about summary refs log tree commit diff stats
path: root/html/fork.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-12 22:34:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-12 22:34:45 -0700
commitd44123cabaa730c778a0e2644c75dbfba6a7ab30 (patch)
treea24e90f9fc864ea5b1c5e1f13433f55ad7acd30b /html/fork.mu.html
parent1ae4e0d95f7e37dc7d0b146542fc39b4aed491de (diff)
downloadmu-d44123cabaa730c778a0e2644c75dbfba6a7ab30.tar.gz
1556
Diffstat (limited to 'html/fork.mu.html')
-rw-r--r--html/fork.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/fork.mu.html b/html/fork.mu.html
index 39c7207a..40e645b5 100644
--- a/html/fork.mu.html
+++ b/html/fork.mu.html
@@ -16,7 +16,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 .Constant { color: #008080; }
 .Comment { color: #8080ff; }
 .Delimiter { color: #c000c0; }
-.Identifier { color: #008080; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 -->
 </style>
@@ -34,15 +34,15 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 <span class="muRecipe">recipe</span> main [
   start-running thread2:<span class="muRecipe">recipe</span>
   <span class="Delimiter">{</span>
-   <span class="Identifier"> $print</span> <span class="Constant">34:literal</span>
-    <span class="Identifier">loop</span>
+    $print <span class="Constant">34:literal</span>
+    <span class="muControl">loop</span>
   <span class="Delimiter">}</span>
 ]
 
 <span class="muRecipe">recipe</span> thread2 [
   <span class="Delimiter">{</span>
-   <span class="Identifier"> $print</span> <span class="Constant">35:literal</span>
-    <span class="Identifier">loop</span>
+    $print <span class="Constant">35:literal</span>
+    <span class="muControl">loop</span>
   <span class="Delimiter">}</span>
 ]
 </pre>
f1c252f'>^
36e4e71e ^
20ab9343 ^








4ea0f69a ^

36e4e71e ^
e952d6cb ^
36e4e71e ^

78a7d762 ^
e952d6cb ^
78a7d762 ^
e952d6cb ^
4ea0f69a ^

7838675f ^









500cf259 ^



bf14a7e7 ^
500cf259 ^
7838675f ^
4ea0f69a ^

36e4e71e ^
e952d6cb ^


7582555b ^
e952d6cb ^
36e4e71e ^
e952d6cb ^




36e4e71e ^
a2853ab6 ^
e952d6cb ^
36e4e71e ^
306c76d8 ^
6df94b8b ^


54717324 ^













6df94b8b ^

306c76d8 ^
e952d6cb ^

306c76d8 ^
e952d6cb ^


306c76d8 ^
e952d6cb ^
306c76d8 ^
e952d6cb ^

45cf5174 ^
e952d6cb ^

45cf5174 ^
b34fd133 ^
e952d6cb ^

45cf5174 ^
e952d6cb ^
45cf5174 ^
e952d6cb ^

45cf5174 ^
e952d6cb ^

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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133