about summary refs log blame commit diff stats
path: root/linux/apps/hello.mu
blob: debdf916a19329f8a56ebc615c64a3528ee71b50 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                   
                               

             
                       
                                         
          
 
# Meaningless conventional example.
#
# To run:
#   $ ./translate apps/hello.mu
#   $ ./a.elf

fn main -> _/ebx: int {
  print-string 0/screen, "Hello world!\n"
  return 0
}