aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/test/resources/evaluate/evalvmcontext.vm
blob: c27e229e3f69e9bc58d4cc8074f5b10de488920e (plain)
1
2
3
4
5
6
7
## test of evaluate in a macro context whith local refs (foreach refs)

#macro(testEval $expr)
#foreach($value in ["val1", "val2"])value is : #evaluate( $expr );#end
#end

#testEval( "${value}" )