about summary refs log tree commit diff stats
path: root/html/keyboard.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/keyboard.mu.html
parent1ae4e0d95f7e37dc7d0b146542fc39b4aed491de (diff)
downloadmu-d44123cabaa730c778a0e2644c75dbfba6a7ab30.tar.gz
1556
Diffstat (limited to 'html/keyboard.mu.html')
-rw-r--r--html/keyboard.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/keyboard.mu.html b/html/keyboard.mu.html
index 29d73f4e..9b0e29b3 100644
--- a/html/keyboard.mu.html
+++ b/html/keyboard.mu.html
@@ -17,7 +17,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 .Comment { color: #8080ff; }
 .Delimiter { color: #c000c0; }
 .Special { color: #ff6060; }
-.Identifier { color: #008080; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 -->
 </style>
@@ -39,9 +39,9 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
   switch-to-display
   <span class="Delimiter">{</span>
     c:character, found?:boolean<span class="Special"> &lt;- </span>read-key-from-keyboard
-    <span class="Identifier">break-if</span> found?:boolean
+    <span class="muControl">break-if</span> found?:boolean
     print-character-to-display <span class="Constant">97:literal</span>
-    <span class="Identifier">loop</span>
+    <span class="muControl">loop</span>
   <span class="Delimiter">}</span>
   return-to-console
 ]
n class='oid'>ac07e589 ^
d3a9db3a ^
ac07e589 ^
6e1eeeeb ^
ac07e589 ^
ac07e589 ^

6e1eeeeb ^
672e3e50 ^

a654e4ec ^



e5c11a51 ^









6e1eeeeb ^
e5c11a51 ^











a654e4ec ^

672e3e50 ^
e5c11a51 ^
c8a3ccbe ^
a654e4ec ^
5fe060d5 ^

c504ca56 ^
5fe060d5 ^










d3a9db3a ^
6e1eeeeb ^
5fe060d5 ^


d3a9db3a ^

5fe060d5 ^

d3a9db3a ^



6e1eeeeb ^

5fe060d5 ^
d3a9db3a ^




6e1eeeeb ^

5fe060d5 ^

d3a9db3a ^
5fe060d5 ^

d3a9db3a ^

5fe060d5 ^


d3a9db3a ^
5fe060d5 ^






d3a9db3a ^
5fe060d5 ^
6e1eeeeb ^
d3a9db3a ^
5fe060d5 ^












6e1eeeeb ^

c504ca56 ^
6e1eeeeb ^





d3a9db3a ^
6e1eeeeb ^


8aeb85f0 ^
6e1eeeeb ^
d3a9db3a ^
6e1eeeeb ^





d3a9db3a ^
6e1eeeeb ^



d3a9db3a ^

c504ca56 ^
d3a9db3a ^
c504ca56 ^





672e3e50 ^


a654e4ec ^
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174