v/examples/js_hello_world.v

6 lines
72 B
V

fn main() {
for i in 0 .. 3 {
println('Hello from V.js (${i})')
}
}