about summary refs log tree commit diff stats
path: root/global.mu
diff options
context:
space:
mode:
Diffstat (limited to 'global.mu')
-rw-r--r--global.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/global.mu b/global.mu
index d4764fb8..c34a3ff8 100644
--- a/global.mu
+++ b/global.mu
@@ -4,11 +4,11 @@ def main [
   # allocate 5 locations for globals
   global-space:address:array:location <- new location:type, 5
   # read to globals by using /space:global
-  1:number/space:global <- copy 3
+  1:num/space:global <- copy 3
   foo
 ]
 
 def foo [
   # ditto for writing to globals
-  $print 1:number/space:global, 10/newline
+  $print 1:num/space:global, 10/newline
 ]