Added test cases for at-expressions.
[voodoo-lang.git] / test / hello.voo
blobba6c6acd259c3bd3ff72f2e76d22585b48446a65
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