Sign in
android
/
platform
/
external
/
apache-velocity-engine
/
b8206d96
/
.
/
examples
/
example.vm
blob: d7ce14e7088781008896937e4f989df63b20db14 [
file
] [
log
] [
blame
]
## This is an example velocity template
#set $this = "Velocity"
$this
is
great
!
#foreach( $name in $list )
$name
is
great
!
#end
#set $condition = true
#if ($condition)
The
condition
is
true
!
#else
The
condition
is
false
!
#end