about summary refs log tree commit diff stats
path: root/linux/hello.mu
blob: 9e8fdb6f545214fd28b34c78cbede0b07f8f8eeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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
}