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 12:55:10 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 12:55:10 -0700
commit760f683f2755038a1b0c16522f5001b889096aa5 (patch)
treee07afd384d45be93d81fb4c1788b332fe05799a0 /global.mu
parent80df524b566a708551f752ce8b82e21738591651 (diff)
downloadmu-760f683f2755038a1b0c16522f5001b889096aa5.tar.gz
3389
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 c34a3ff8..963d04c1 100644
--- a/global.mu
+++ b/global.mu
@@ -2,7 +2,7 @@
 
 def main [
   # allocate 5 locations for globals
-  global-space:address:array:location <- new location:type, 5
+  global-space:&:array:location <- new location:type, 5
   # read to globals by using /space:global
   1:num/space:global <- copy 3
   foo