about summary refs log tree commit diff stats
path: root/linux/apps/hello.mu
blob: debdf916a19329f8a56ebc615c64a3528ee71b50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# Meaningless conventional example.
#
# To run:
#   $ ./translate apps/hello.mu
#   $ ./a.elf

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