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





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

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