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 839926a7..756469c1 100644
--- a/global.mu
+++ b/global.mu
@@ -2,9 +2,9 @@
 
 recipe main [
   # allocate 5 locations for globals
-  global-space:address:array:location <- new location:type, 5:literal
+  global-space:address:array:location <- new location:type, 5
   # read to globals by using /space:global
-  1:number/space:global <- copy 3:literal
+  1:number/space:global <- copy 3
   foo
 ]
 
d='n91' href='#n91'>91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127