about summary refs log tree commit diff stats
path: root/mutable.mu
diff options
context:
space:
mode:
Diffstat (limited to 'mutable.mu')
-rw-r--r--mutable.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/mutable.mu b/mutable.mu
index 4f190adf..dced29b6 100644
--- a/mutable.mu
+++ b/mutable.mu
@@ -2,11 +2,11 @@
 
 def main [
   local-scope
-  x:address:num <- new number:type
+  x:&:num <- new number:type
   foo x
 ]
 
-def foo x:address:num -> x:address:num [
+def foo x:&:num -> x:&:num [
   local-scope
   load-ingredients
   *x <- copy 34