aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/test/resources/templates/newline.vm
blob: 8835bf375ad3aac6e35b758a57fe01df452bfab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#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