• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#macro(woogie $a)
2This is $a
3#end
4
5#woogie(
6"a string"
7)
8
9#macro(
10   name
11   $thing
12)
13Call $thing
14#end
15
16#name("woog")
17
18#set($foo =
19"hello there")
20
21$foo
22
23#set($list =
24	[1..10])
25
26#foreach($item
27in $list)
28$item
29#end
30