diff options
Diffstat (limited to 'global.mu')
-rw-r--r-- | global.mu | 4 |
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 ] |