about summary refs log tree commit diff stats
path: root/html/callcc.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-25 22:27:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-25 22:27:19 -0700
commitc5ffb6e1cc9c5ff880d037c53b8ebc8562be0008 (patch)
tree2d05d987ec3c81bfbb0c1f598966d9d1b16e9b1f /html/callcc.mu.html
parentb2757892d553352feb59d70b1e7241ccdafa6905 (diff)
downloadmu-c5ffb6e1cc9c5ff880d037c53b8ebc8562be0008.tar.gz
1459
Diffstat (limited to 'html/callcc.mu.html')
-rw-r--r--html/callcc.mu.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/html/callcc.mu.html b/html/callcc.mu.html
new file mode 100644
index 00000000..53337e52
--- /dev/null
+++ b/html/callcc.mu.html
@@ -0,0 +1,52 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<title>callcc.mu</title>
+<meta name="Generator" content="Vim/7.4">
+<meta name="plugin-version" content="vim7.4_v1">
+<meta name="syntax" content="none">
+<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">
+<meta name="colorscheme" content="minimal">
+<style type="text/css">
+<!--
+pre { white-space: pre-wrap; font-family: monospace; color: #d0d0d0; background-color: #000000; }
+body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
+* { font-size: 1em; }
+.muRecipe { color: #ff8700; }
+.Comment { color: #8080ff; }
+.Constant { color: #008080; }
+.Special { color: #ff6060; }
+.Identifier { color: #008080; }
+-->
+</style>
+
+<script type='text/javascript'>
+<!--
+
+-->
+</script>
+</head>
+<body>
+<pre id='vimCodeElement'>
+<span class="Comment"># example program: saving and reusing call-stacks or continuations</span>
+
+<span class="muRecipe">recipe</span> main [
+  c:continuation<span class="Special"> &lt;- </span>f
+  continue-from c:continuation            <span class="Comment"># &lt;-- ..when you hit this</span>
+]
+
+<span class="muRecipe">recipe</span> f [
+  c:continuation<span class="Special"> &lt;- </span>g
+  <span class="Identifier">reply</span> c:continuation
+]
+
+<span class="muRecipe">recipe</span> g [
+  c:continuation<span class="Special"> &lt;- </span>current-continuation  <span class="Comment"># &lt;-- loop back to here</span>
+ <span class="Identifier"> $print</span> <span class="Constant">1:literal</span>
+  <span class="Identifier">reply</span> c:continuation  <span class="Comment"># threaded through unmodified after first iteration</span>
+]
+</pre>
+</body>
+</html>
+<!-- vim: set foldmethod=manual : -->