Template Toolkit
1 program
Added 2026-03-06T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: TT2, TT
Provenance: commit c573bda1c2 · authored 2026-03-06T09:11:49+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci and Control Structures
Provenance: commit c573bda1c2 · authored 2026-03-06T09:11:49+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
[%# Fibonacci sequence and control structures in Template Toolkit %]
[% a = 0; b = 1 %]
[% BLOCK show_fibonacci %]
[% FOREACH i IN [1..n] %]
[% tmp = a + b; a = b; b = tmp %]
[% i %]: [% a %]
[% END %]
[% END %]
[%# Loop example with FOREACH and loop metadata %]
[% fruits = ['apple', 'banana', 'cherry', 'date'] %]
[% FOREACH fruit IN fruits %]
[% loop.count %]. [% fruit | ucfirst %][% ' (last)' IF loop.last %]
[% END %]
[%# Conditional example %]
[% score = 85 %]
[% IF score >= 90 %]
Grade: A
[% ELSIF score >= 80 %]
Grade: B
[% ELSIF score >= 70 %]
Grade: C
[% ELSE %]
Grade: F
[% END %]