blob: daa2e38580fa4910eef54597f6a57feb24c3be81 [file] [log] [blame]
<#macro test foo>
Test ${foo}.
Email: ${mail}
<#if .main.mail?exists>
Email in the root: ${.main.mail}
</#if>
</#macro>
<#function doubleUp foo>
<#return foo+foo>
</#function>
<#assign mail = "jsmith@acme.com">