blob: 70293365564af394c1dd34ff3eeb8aa3c981d422 (
plain) (
tree)
blob is binary.
e)
1
2
3
4
5
6
7
8
9
10
|
# 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
}
|