diff options
Diffstat (limited to 'x.mu')
-rw-r--r-- | x.mu | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/x.mu b/x.mu index 06b62c25..6fbfaec0 100644 --- a/x.mu +++ b/x.mu @@ -1,4 +1,6 @@ -(1 <- loadi 1) -(2 <- loadi 3) -(3 <- add 1 2) -(prn 3) +(main + (1 <- loadi 1) + (2 <- loadi 3) + (3 <- add 1 2) + (x <- prn a) +) |