1## This template is used for the case in which #set with a null 2## IS accepted 3set2 4 5#set ($abc = "123") 6$abc 7#set ($abc = $boohoo) 8$abc 9 10#set ($map = {}) 11#set($map.foo = "foo") 12#set($map.bar = "bar") 13$map.foo 14$map.bar 15#set($map.bar = $boohoo) 16$map.foo 17$map.bar 18 19## 20## check a macro 21## 22 23#macro (test) 24#set ($test = "test") 25$test 26#set ($test = $null) 27$test 28#end 29#test() 30