summary refs log tree commit diff stats
path: root/compiler/magicsys.nim
Commit message (Expand)AuthorAgeFilesLines
* some progress for jester+asyncAraq2014-06-271-0/+2
* case consistency: cs:partial bootstraps on windowsAraq2013-12-291-1/+1
* case consistency: next stepsAraq2013-12-291-1/+1
* case consistency part 4Araq2013-12-271-7/+7
* case consistency part 1Araq2013-12-271-9/+8
* fixes #578Araq2013-08-301-1/+1
* float64 is now an alias to 'float'; fixes #545Araq2013-08-301-4/+9
* implemented large parts of the 'not nil' checkingAraq2013-06-091-1/+15
* get rid of ImportTablePos and ModuleTablePosZahary Karadjov2013-05-121-2/+0
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* small improvementsAraq2013-02-271-1/+4
* temporary debugging code for the memory leak investigationZahary Karadjov2012-11-281-0/+9
* exception tracking barely works; but disabledAraq2012-10-311-1/+1
* 'addSon' for types deprecated for 'int literal type' analysisAraq2012-07-091-0/+10
* changed integer promotion rules; breaks bootstrapping and lots of codeAraq2012-07-081-14/+41
* changed integer promotion rules; added math.fmodAraq2012-06-281-2/+21
* better support for unsigned integers.Zahary Karadjov2012-06-111-0/+6
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* got rid of nstrtabs and nhashes modulesAraq2011-06-101-3/+3
* big repo cleanupAraq2011-04-121-0/+87
> 2015-05-25 22:27:19 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-05-25 22:27:19 -0700 1459' href='/akkartik/mu/commit/html/callcc.mu.html?h=hlt&id=c5ffb6e1cc9c5ff880d037c53b8ebc8562be0008'>c5ffb6e1 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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>Mu - 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: #eeeeee; background-color: #080808; }
body { font-family: monospace; color: #eeeeee; background-color: #080808; }
* { font-size: 1.05em; }
.muRecipe { color: #ff8700; }
.Comment { color: #9090ff; }
.Constant { color: #00a0a0; }
.Special { color: #ff6060; }
.muControl { color: #c0a020; }
-->
</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
  <span class="muControl">continue-from</span> 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="muControl">reply</span> c:continuation
]

<span class="muRecipe">recipe</span> g [
  c:continuation<span class="Special"> &lt;- </span><span class="muControl">current-continuation</span>  <span class="Comment"># &lt;-- loop back to here</span>
  $print <span class="Constant">1:literal</span>
  <span class="muControl">reply</span> c:continuation  <span class="Comment"># threaded through unmodified after first iteration</span>
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->