about summary refs log tree commit diff stats
path: root/archive/2.vm/continuation3.mu
diff options
context:
space:
mode:
Diffstat (limited to 'archive/2.vm/continuation3.mu')
-rw-r--r--archive/2.vm/continuation3.mu34
1 files changed, 34 insertions, 0 deletions
diff --git a/archive/2.vm/continuation3.mu b/archive/2.vm/continuation3.mu
new file mode 100644
index 00000000..cde60958
--- /dev/null
+++ b/archive/2.vm/continuation3.mu
@@ -0,0 +1,34 @@
+# Example program showing that a function call can be 'paused' multiple times,
+# creating different continuation values.
+#
+# To run:
+#   $ git clone https://github.com/akkartik/mu
+#   $ cd mu
+#   $ ./mu continuation3.mu
+#
+# Expected output:
+#   caller 0
+#   callee 0
+#   caller 1
+#   callee 1
+#   caller 2
+#   callee 2
+
+def main [
+  local-scope
+  $print [caller 0] 10/newline
+  k:continuation <- call-with-continuation-mark 100/mark, f
+  $print [caller 1] 10/newline
+  k <- call k
+  $print [caller 2] 10/newline
+  call k
+]
+
+def f [
+  local-scope
+  $print [callee 0] 10/newline
+  return-continuation-until-mark 100/mark
+  $print [callee 1] 10/newline
+  return-continuation-until-mark 100/mark
+  $print [callee 2] 10/newline
+]