about summary refs log tree commit diff stats
path: root/arc/.traces/le-literal-true
blob: c8682ca19989d49520e6d66389007247c42e7ad8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
c{0: 0 (((1 boolean)) <- ((lesser-or-equal)) ((4 literal)) ((4 literal))) -- nil
c{1: 0 ✓ (((1 boolean)) <- ((lesser-or-equal)) ((4 literal)) ((4 literal)))
cn0: convert-names in main
cn0: (((1 boolean)) <- ((lesser-or-equal)) ((4 literal)) ((4 literal))) nil nil
cn0: checking arg ((4 literal))
cn0: checking arg ((4 literal))
cn0: checking oarg ((1 boolean))
maybe-add: ((1 boolean))
cn1: (((1 boolean)) <- ((lesser-or-equal)) ((4 literal)) ((4 literal)))
schedule: main
run: main 0: (((1 boolean)) <- ((lesser-or-equal)) ((4 literal)) ((4 literal)))
run: main 0: t => ((1 boolean))
mem: ((1 boolean)): 1 <= t
schedule: done with routine nil
=main&id=8b9f1750c74c7d3cca99d6949a90cd61eb8e0218'>^
dbe12410 ^
d44123ca ^
c5ffb6e1 ^
d44123ca ^
c5ffb6e1 ^


83fcebf3 ^
c5ffb6e1 ^
dbe12410 ^
c5ffb6e1 ^
dbe12410 ^
c5ffb6e1 ^
11f6618a ^


c5ffb6e1 ^
d44123ca ^
c5ffb6e1 ^

d44123ca ^
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69



                                                                                          
                               






                                                                                         

                                                                                                 
                        
                             

                             
                            
                              













                                                                                                       
                                                  


                                                                                                                                                                   


                                                        
                                                 
                                                                                                                                                                                                                  
                                                                                           
                                                                                    
                                                       


                                           
                                                 
                                          
                                                                                                                  
                                          
                                                                                                                  
                                                                          


                                                                                                                                       
                                              
                                                            

                                                                                                
                                                                                                                                                    





                                     
<!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 - counters.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: maintain multiple counters with isolated lexical scopes</span>
<span class="Comment"># (spaces)</span>

<span class="muRecipe">recipe</span> new-counter [
  <span class="Constant">default-space</span>:address:array:location<span class="Special"> &lt;- </span>new location:type, <span class="Constant">30:literal</span>
  n:number<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
  <span class="muControl">reply</span> <span class="Constant">default-space</span>:address:array:location
]

<span class="muRecipe">recipe</span> increment-counter [
  <span class="Constant">new-default-space</span>
  0:address:array:location/names:new-counter<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>  <span class="Comment"># setup outer space; it *must* come from 'new-counter'</span>
  x:number<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
  n:number/space:1<span class="Special"> &lt;- </span>add n:number/space:1, x:number
  <span class="muControl">reply</span> n:number/space:1
]

<span class="muRecipe">recipe</span> main [
  <span class="Constant">new-default-space</span>
  <span class="Comment"># counter A</span>
  a:address:array:location<span class="Special"> &lt;- </span>new-counter <span class="Constant">34:literal</span>
  <span class="Comment"># counter B</span>
  b:address:array:location<span class="Special"> &lt;- </span>new-counter <span class="Constant">23:literal</span>
  <span class="Comment"># increment both by 2 but in different ways</span>
  increment-counter a:address:array:location, <span class="Constant">1:literal</span>
  b-value:number<span class="Special"> &lt;- </span>increment-counter b:address:array:location, <span class="Constant">2:literal</span>
  a-value:number<span class="Special"> &lt;- </span>increment-counter a:address:array:location, <span class="Constant">1:literal</span>
  <span class="Comment"># check results</span>
  $print <span class="Constant">[Contents of counters</span>
<span class="Constant">]</span>
  <span class="Comment"># trailing space in next line is to help with syntax highlighting</span>
  $print <span class="Constant">[a: ]</span>, a-value:number, <span class="Constant">[ b: ]</span>, b-value:number, <span class="Constant">[ </span>
<span class="Constant">]</span>
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->