aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/test/resources/templates/commas.vm
blob: 4afa432e817ca5e81ba41c5a47aed7770c0eb13c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#macro(test $a $b)
	a: $a
	b: $b
#end
#macro(test2 $a, $b,$c,$d)
	a2: $a
	b2: $b
	c2: $c
	d2: $d
#end

#test("1","2")
#test("1" , "2")
#test("1" "2")
#test2("1","2","3","4")