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

x64 machine code generation (ELF)

This commit is contained in:
Alexander Medvednikov
2019-11-19 09:53:52 +03:00
parent ab91733a28
commit 9712213f50
13 changed files with 564 additions and 15 deletions

View File

@ -0,0 +1,6 @@
fn main() {
for _ in 0..5 {
println('Hello world from V x64 machine code generator!')
}
println('Hello again!')
}