mu/x.mu
Kartik K. Agaram 4a0b335c28 49 - make Readme less ambiguous
As expected, mu works just as well with named variables.
Maybe I want to insert the local stack frame computations automatically
using the assembler? How to indicate globals then? Add 'local' metadata only
if 'global' is absent? What about lexical stack frames?
2014-08-18 10:23:24 -07:00

6 lines
113 B
Plaintext

(main
((x integer) <- literal 1)
((y integer) <- literal 3)
((z integer) <- add (x integer) (y integer))
)