blob: 4afa432e817ca5e81ba41c5a47aed7770c0eb13c [file] [log] [blame]
#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")