about summary refs log tree commit diff stats
path: root/x.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-07-06 01:41:37 -0700
committerKartik K. Agaram <vc@akkartik.com>2014-07-06 01:44:32 -0700
commitc72d831021051afe144907d6cb594d8d6e0281aa (patch)
tree1e90ea3e18d6e6a2a4d21950caa9ebfa011c1eaa /x.mu
parente74ff41321eded0d2e22449b17ac29c38f3abf2c (diff)
downloadmu-c72d831021051afe144907d6cb594d8d6e0281aa.tar.gz
1
Diffstat (limited to 'x.mu')
-rw-r--r--x.mu10
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)
+)