1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/x64/hello_world.v

12 lines
179 B
V
Raw Normal View History

2019-11-19 09:53:52 +03:00
fn main() {
println('x64 test')
2019-11-19 09:53:52 +03:00
for _ in 0..5 {
println('Hello world from V x64 machine code generator!')
}
println('Hello again!')
}
fn test_fn() {
println('test fn')
}