about summary refs log tree commit diff stats
path: root/x.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 00:43:13 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 00:43:20 -0700
commit192d59d3bb9ee0baa1afd82cb5d0f352bdc6e403 (patch)
tree56ade9284cbd296ade90601a3a047c5cbdf3428c /x.mu
parent08f4628e8b858120fe3547d8e5431d9abfe46bf8 (diff)
downloadmu-192d59d3bb9ee0baa1afd82cb5d0f352bdc6e403.tar.gz
3380
One more place we were missing expanding type abbreviations: inside
container definitions.
Diffstat (limited to 'x.mu')
-rw-r--r--x.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/x.mu b/x.mu
index 500ceae7..f53a86ba 100644
--- a/x.mu
+++ b/x.mu
@@ -1,8 +1,8 @@
 # example program: add two numbers
 
 def main [
-  11:number <- copy 1
-  12:number <- copy 3
-  13:number <- add 11:number, 12:number
+  11:num <- copy 1
+  12:num <- copy 3
+  13:num <- add 11:num, 12:num
   $dump-memory
 ]