added shared library support to AMD64 and i386
[voodoo-lang.git] / test / hello.voo
blob844af9df091ad2042d6a98a97cf2337cf87b1436
1 #### Hello world in Voodoo
3 section data
4 greeting:
5 string "Hello, world!\x00"
7 section functions
8 import puts
9 export main
11 main:
12 function argc argv
13     call puts greeting
14     return 0
15 end function