diff options
Diffstat (limited to 'counters.mu')
-rw-r--r-- | counters.mu | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/counters.mu b/counters.mu index 22f5554f..b69b2eee 100644 --- a/counters.mu +++ b/counters.mu @@ -1,24 +1,24 @@ # example program: maintain multiple counters with isolated lexical scopes # (spaces) -recipe new-counter n:number -> default-space:address:array:location [ +recipe new-counter n:number -> default-space:address:shared:array:location [ default-space <- new location:type, 30 load-ingredients ] -recipe increment-counter outer:address:array:location/names:new-counter, x:number -> n:number/space:1 [ +recipe increment-counter outer:address:shared:array:location/names:new-counter, x:number -> n:number/space:1 [ local-scope load-ingredients - 0:address:array:location/names:new-counter <- copy outer # setup outer space; it *must* come from 'new-counter' + 0:address:shared:array:location/names:new-counter <- copy outer # setup outer space; it *must* come from 'new-counter' n/space:1 <- add n/space:1, x ] recipe main [ local-scope # counter A - a:address:array:location <- new-counter 34 + a:address:shared:array:location <- new-counter 34 # counter B - b:address:array:location <- new-counter 23 + b:address:shared:array:location <- new-counter 23 # increment both by 2 but in different ways increment-counter a, 1 b-value:number <- increment-counter b, 2 |