#*
This is a sample comment block that
spans multiple lines.
*#
#macro ( outputItem $item )
${item}
#end
## Define the items to iterate
#set ( $items = [1, 2, 3, 4] )
## Iterate over the items and output the evens.
#foreach ( $item in $items )
#if ( $_MathTool.mod($item, 2) == 0 )
#outputItem ($item)
#end
#end