1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/vweb/index.html
2021-09-21 07:54:10 +03:00

24 lines
194 B
HTML

@include 'header.html'
Test <b>app</b>
<br>
<h1>@hello</h1>
<hr>
If demo: <br>
@if show
show = true
@end
<br><br>
For loop demo: <br>
@for number in numbers
@number <br>
@end
<hr>
End.