https://github.com/akkartik/mu/blob/master/example1.mu
1 def main [
2   local-scope
3   a:num <- add 2, 2
4   a <- multiply a, 3
5   # uncomment the next line to see the output
6 # $print a
7 ]