fool2fish / velocity

A node velocity template engine. Node 版 velocity 模板引擎。

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

macro内部set显示值还是全局的

wuchang1123 opened this issue · comments

set($a = 1)

macro(d $a)

$a
#set($a =3)
$a

end

d($a)

$a

输出:
113
期待:
133