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

x64: fn call test

This commit is contained in:
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