mu/continuation4.mu

48 lines
1.1 KiB
Plaintext
Raw Normal View History

# Example program showing 'return-continuation-until-mark' return other values
# alongside continuations.
#
# Print out a given list of numbers.
#
2017-11-25 18:17:23 +00:00
# To run:
# $ git clone https://github.com/akkartik/mu
# $ cd mu
# $ ./mu continuation4.mu
#
# Expected output:
# 1
# 2
# 3
def main [
local-scope
2018-06-17 18:20:53 +00:00
l:&:list:num <- copy null
l <- push 3, l
l <- push 2, l
l <- push 1, l
k:continuation, x:num, done?:bool <- call-with-continuation-mark 100/mark, create-yielder, l
{
break-if done?
$print x 10/newline
k, x:num, done?:bool <- call k
loop
}
]
def create-yielder l:&:list:num -> n:num, done?:bool [
local-scope
2017-12-04 07:25:40 +00:00
load-inputs
{
2018-06-17 18:20:53 +00:00
done? <- equal l, null
2017-11-05 18:22:25 +00:00
break-if done?
n <- first l
l <- rest l
return-continuation-until-mark 100/mark, n, done?
loop
}
2017-11-05 18:22:25 +00:00
# A function that returns continuations shouldn't get the opportunity to
# return. Calling functions should stop calling its continuation after this
# point.
return-continuation-until-mark 100/mark, -1, done?
assert false, [called too many times, ran out of continuations to return]
]