v2 / vlib / v / tests / tmpl / inner.txt
17 lines · 14 sloc · 201 bytes · 3d60410b605d001e54f280070d5f952da9de1112
Raw
@for i in 0..10
${i*2} - ${i}
@end

@for key, val in downloads
${key}, downloaded ${val} times.
@end

@if !ignored
this is ignored
@else
this is not ignored
@end

@if true
so, it's basically true
@end