blob: 8835bf375ad3aac6e35b758a57fe01df452bfab7 [file] [log] [blame]
#macro(woogie $a)
This is $a
#end
#woogie(
"a string"
)
#macro(
name
$thing
)
Call $thing
#end
#name("woog")
#set($foo =
"hello there")
$foo
#set($list =
[1..10])
#foreach($item
in $list)
$item
#end