The template:
Here is my #echo ', '.join(['silly']*5) # example
The output:
Here is my silly, silly, silly, silly, silly example
The generated code:
write('Here is my ') write(filter(', '.join(['silly']*5) )) write(' example\n')