1#macro(test $a $b) 2 a: $a 3 b: $b 4#end 5#macro(test2 $a, $b,$c,$d) 6 a2: $a 7 b2: $b 8 c2: $c 9 d2: $d 10#end 11 12#test("1","2") 13#test("1" , "2") 14#test("1" "2") 15#test2("1","2","3","4") 16