mu/linux/apps/hello.mu
Kartik K. Agaram 44d26b77c4 .
2021-07-16 08:28:56 -07:00

11 lines
174 B
Forth

# Meaningless conventional example.
#
# To run:
# $ ./translate apps/hello.mu
# $ ./a.elf
fn main -> _/ebx: int {
print-string 0/screen, "Hello world!\n"
return 0
}