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

x64 fixes

This commit is contained in:
Alexander Medvednikov
2020-01-01 22:34:46 +01:00
parent 807c16dd1b
commit b1d6021875
8 changed files with 74 additions and 128 deletions

View File

@ -1,14 +1,21 @@
fn test_fn() {
println('test fn')
}
fn println(s string) { }
//fn test_fn() {
//println('test fn')
//}
fn main() {
println('x64 test')
for _ in 0..5 {
//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')
*/
}