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
70
71
72
73
74
75
76
77
78
79
|
<!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 - channel.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; }
.muControl { color: #c0a020; }
.muRecipe { color: #ff8700; }
.Comment { color: #9090ff; }
.Constant { color: #00a0a0; }
.Special { color: #ff6060; }
.Delimiter { color: #a04060; }
-->
</style>
<script type='text/javascript'>
<!--
-->
</script>
</head>
<body>
<pre id='vimCodeElement'>
<span class="Comment"># example program: communicating between routines using channels</span>
<span class="muRecipe">recipe</span> producer chan:address:channel<span class="muRecipe"> -> </span>chan:address:channel [
<span class="Comment"># produce characters 1 to 5 on a channel</span>
<span class="Constant">local-scope</span>
<span class="Constant">load-ingredients</span>
<span class="Comment"># n = 0</span>
n:character<span class="Special"> <- </span>copy <span class="Constant">0</span>
<span class="Delimiter">{</span>
done?:boolean<span class="Special"> <- </span>lesser-than n, <span class="Constant">5</span>
<span class="muControl">break-unless</span> done?
<span class="Comment"># other threads might get between these prints</span>
$print <span class="Constant">[produce: ]</span>, n, <span class="Constant">[ </span>
<span class="Constant">]</span>
chan:address:channel<span class="Special"> <- </span>write chan, n
n<span class="Special"> <- </span>add n, <span class="Constant">1</span>
<span class="muControl">loop</span>
<span class="Delimiter">}</span>
]
<span class="muRecipe">recipe</span> consumer chan:address:channel<span class="muRecipe"> -> </span>chan:address:channel [
<span class="Comment"># consume and print integers from a channel</span>
<span class="Constant">local-scope</span>
<span class="Constant">load-ingredients</span>
<span class="Delimiter">{</span>
<span class="Comment"># read an integer from the channel</span>
n:character, chan:address:channel<span class="Special"> <- </span>read chan
<span class="Comment"># other threads might get between these prints</span>
$print <span class="Constant">[consume: ]</span>, n:character, <span class="Constant">[ </span>
<span class="Constant">]</span>
<span class="muControl">loop</span>
<span class="Delimiter">}</span>
]
<span class="muRecipe">recipe</span> main [
<span class="Constant">local-scope</span>
chan:address:channel<span class="Special"> <- </span>new-channel <span class="Constant">3</span>
<span class="Comment"># create two background 'routines' that communicate by a channel</span>
routine1:character<span class="Special"> <- </span>start-running <span class="Constant">producer:recipe</span>, chan
routine2:character<span class="Special"> <- </span>start-running <span class="Constant">consumer:recipe</span>, chan
wait-for-routine routine1
wait-for-routine routine2
]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->
|