https://github.com/akkartik/mu/blob/master/apps/ex1.mu
 1 # First example: return the answer to the Ultimate Question of Life, the
 2 # Universe, and Everything.
 3 #
 4 # To run:
 5 #   $ ./translate_mu apps/ex1.mu
 6 #   $ ./a.elf
 7 # Expected result:
 8 #   $ echo $?
 9 #   42
10 
11 fn main -> result/ebx: int {
12   result <- copy 0x2a  # Mu requires hexadecimal
13 }