mu/apps/hello.mu
Kartik Agaram 1a1ab91e77 6717
2020-08-15 21:43:52 -07:00

11 lines
193 B
Forth

# Meaningless conventional example.
#
# To run:
# $ ./translate_mu apps/hello.mu
# $ ./a.elf
fn main -> exit-status/ebx: int {
print-string 0, "Hello world!\n"
exit-status <- copy 0
}