1   ## a comment
2
3\## not a comment
4
5#if foo
6  ${bar}
7#endif
8
9The answer is:
10#choose
11  #when 0 == 1
12    0
13  #end
14  #when 1 == 1
15    1
16  #end
17  #otherwise
18    2
19  #end
20#end -- comment about choose
21
22#for item in items
23  * ${item}
24#end
25
26#def greeting(name)
27  Hello, ${name}!
28#end
29${greeting('world')}
30
31#with y=7; z=x+10
32  $x $y $z
33#end
34