x64: fn call test

pull/4532/head^2
Alexander Medvednikov 2020-04-20 22:36:12 +02:00
parent 871c29ea5d
commit 10677c2b0c
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,14 @@
fn print_greeting(){
println('hello from x64')
}
fn print_number() {
println('123')
}
fn main() {
println('start')
print_greeting()
print_number()
println('end')
}

View File

@ -0,0 +1,4 @@
start
hello from x64
123
end