about summary refs log tree commit diff stats
path: root/global.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 13:00:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 13:00:39 -0700
commita0331a9b0eab63a000dcd022fe605d124c573b8d (patch)
tree5c7403d16fd8c9d31ead65495eae84edf9cfc2e4 /global.mu
parent760f683f2755038a1b0c16522f5001b889096aa5 (diff)
downloadmu-a0331a9b0eab63a000dcd022fe605d124c573b8d.tar.gz
3390
Diffstat (limited to 'global.mu')
-rw-r--r--global.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/global.mu b/global.mu
index 963d04c1..b186fb8d 100644
--- a/global.mu
+++ b/global.mu
@@ -2,7 +2,7 @@
 
 def main [
   # allocate 5 locations for globals
-  global-space:&:array:location <- new location:type, 5
+  global-space:&:@:location <- new location:type, 5
   # read to globals by using /space:global
   1:num/space:global <- copy 3
   foo