mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
22 lines
283 B
V
22 lines
283 B
V
fn println(s string) { }
|
|
|
|
//fn test_fn() {
|
|
//println('test fn')
|
|
//}
|
|
|
|
fn main() {
|
|
println('x64 test')
|
|
//i := 0
|
|
//for i < 5 {
|
|
for _ in 1..5 {
|
|
println('Hello world from V x64 machine code generator!')
|
|
//i++
|
|
}
|
|
/*
|
|
println('Hello again!')
|
|
//test_fn()
|
|
println('done')
|
|
*/
|
|
}
|
|
|