2021-11-30 12:49:30 +03:00
|
|
|
fn test_fn() {
|
|
|
|
println('test fn')
|
|
|
|
}
|
2019-11-28 16:49:35 +03:00
|
|
|
|
2019-11-19 09:53:52 +03:00
|
|
|
fn main() {
|
2021-04-26 16:39:38 +03:00
|
|
|
println('native test')
|
2021-11-30 12:49:30 +03:00
|
|
|
mut i := 0
|
|
|
|
for i < 5 {
|
|
|
|
println('Hello world from V native machine code generator, in a while style for loop!')
|
|
|
|
i++
|
|
|
|
}
|
2021-04-20 17:16:35 +03:00
|
|
|
for _ in 1 .. 5 {
|
2021-11-30 12:49:30 +03:00
|
|
|
println('Hello world from V native machine code generator, in a range loop!')
|
2019-11-19 09:53:52 +03:00
|
|
|
}
|
|
|
|
println('Hello again!')
|
2021-11-30 12:49:30 +03:00
|
|
|
test_fn()
|
2019-11-29 12:33:04 +03:00
|
|
|
println('done')
|
2019-11-19 09:53:52 +03:00
|
|
|
}
|