Syntax:
#echo EXPR
The #echo
directive is used to echo the output from expressions that
can't be written as simple $placeholders.
Here is my #echo ', '.join(['silly']*5) # example
This produces:
Here is my silly, silly, silly, silly, silly example.