Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Tools / NVelocity / test / templates / example1.vm
blobb0b2258fb2747465d28028822377b3d388b977d4
1 ## This is an example velocity template
3 #set( $this = "Velocity")
5 $this is great!
7 #foreach( $name in $list )
8 row $velocityCount :: $name is great!
9 #end
11 #set( $condition = true)
13 #if ($condition)
14     The condition is true!
15 #else
16     The condition is false!
17 #end    
19 this is a property: $props.Include
20 this is a method: $props.GetString("runtime.log")
21 this is another method: $props.ToString()
23 nexted method: $props.Include.GetType()
24 method, no parameters: $props.IsInitialized()
25 runtime-log: $props.GetString("runtime.log")