v/examples/x64/hello_world.v

15 lines
209 B
V
Raw Normal View History

fn test_fn() {
println('test fn')
2019-11-29 10:33:04 +01:00
}
2019-11-19 07:53:52 +01:00
fn main() {
println('x64 test')
2019-11-19 07:53:52 +01:00
for _ in 0..5 {
println('Hello world from V x64 machine code generator!')
}
println('Hello again!')
2019-11-29 10:33:04 +01:00
//test_fn()
println('done')
2019-11-19 07:53:52 +01:00
}