mu/counters.mu

30 lines
860 B
Plaintext
Raw Normal View History

# example program: maintain multiple counters with isolated lexical scopes
# (spaces)
2016-09-17 21:53:00 +00:00
def new-counter n:num -> default-space:space [
default-space <- new location:type, 30
2017-12-04 07:25:40 +00:00
load-inputs # initialize n
]
2016-09-17 21:53:00 +00:00
def increment-counter outer:space/names:new-counter, x:num -> n:num/space:1 [
local-scope
2017-12-04 07:25:40 +00:00
load-inputs
2016-09-17 21:53:00 +00:00
0:space/names:new-counter <- copy outer # setup outer space; it *must* come from 'new-counter'
2015-10-30 17:00:54 +00:00
n/space:1 <- add n/space:1, x
]
def main [
local-scope
# counter A
a:space/names:new-counter <- new-counter 34
# counter B
b:space/names:new-counter <- new-counter 23
# increment both by 2 but in different ways
increment-counter a, 1
b-value:num <- increment-counter b, 2
a-value:num <- increment-counter a, 1
# check results
$print [Contents of counters], 10/newline
2017-09-19 06:23:29 +00:00
$print [a: ], a-value, [ b: ], b-value, 10/newline
]