about summary refs log tree commit diff stats
path: root/x.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-13 10:03:26 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-13 10:03:26 -0700
commit5497090aa1e708c22cd240913a53dda32bb067aa (patch)
tree5a9eb76d447736a8199230c9386bd0a374b325dd /x.mu
parent01caf342d072115c27926b1a61c2fc75ab9fbee0 (diff)
downloadmu-5497090aa1e708c22cd240913a53dda32bb067aa.tar.gz
1363 - rename 'integer' to 'number'
..now that we support non-integers.
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 7f80f845..15dded23 100644
--- a/x.mu
+++ b/x.mu
@@ -1,8 +1,8 @@
 # example program: add two numbers
 
 recipe main [
-  11:integer <- copy 1:literal
-  12:integer <- copy 3:literal
-  13:integer <- add 11:integer, 12:integer
+  11:number <- copy 1:literal
+  12:number <- copy 3:literal
+  13:number <- add 11:number, 12:number
   $dump-memory
 ]