about summary refs log tree commit diff stats
path: root/html/linux/factorial4.subx.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-04-21 08:28:00 -0700
committerKartik Agaram <vc@akkartik.com>2021-04-21 08:28:00 -0700
commita8fb537a88fdbe77cdcbaa05ee28d1cad94550da (patch)
treed0fad5f8da140435dcf05b631a4b3f315e0c1f86 /html/linux/factorial4.subx.html
parentd27994a9d73f970a7b54ec71f4ae457da3734daa (diff)
downloadmu-a8fb537a88fdbe77cdcbaa05ee28d1cad94550da.tar.gz
.
Diffstat (limited to 'html/linux/factorial4.subx.html')
-rw-r--r--html/linux/factorial4.subx.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/linux/factorial4.subx.html b/html/linux/factorial4.subx.html
index 57fa57a0..f14c9d8f 100644
--- a/html/linux/factorial4.subx.html
+++ b/html/linux/factorial4.subx.html
@@ -7,11 +7,11 @@
 <meta name="plugin-version" content="vim8.1_v1">
 <meta name="syntax" content="none">
 <meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
-<meta name="colorscheme" content="minimal-light">
+<meta name="colorscheme" content="minimal-dark">
 <style type="text/css">
 <!--
-pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #c6c6c6; }
-body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
+pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #a8a8a8; }
+body { font-size:12pt; font-family: monospace; color: #000000; background-color: #a8a8a8; }
 a { color:inherit; }
 * { font-size:12pt; font-size: 1em; }
 .SpecialChar { color: #d70000; }
@@ -64,7 +64,7 @@ if ('onhashchange' in window) {
 <span id="L6" class="LineNr"> 6 </span><span class="subxComment">#   control flow</span>
 <span id="L7" class="LineNr"> 7 </span><span class="subxComment">#</span>
 <span id="L8" class="LineNr"> 8 </span><span class="subxComment"># To run:</span>
-<span id="L9" class="LineNr"> 9 </span><span class="subxComment">#   $ ./translate_subx init.linux [01]*.subx apps/factorial.subx -o apps/factorial</span>
+<span id="L9" class="LineNr"> 9 </span><span class="subxComment">#   $ ./translate_subx init.linux [01]*.subx factorial.subx -o factorial</span>
 <span id="L10" class="LineNr">10 </span><span class="subxComment">#   $ bootstrap/bootstrap run factorial</span>
 <span id="L11" class="LineNr">11 </span><span class="subxComment"># Expected result:</span>
 <span id="L12" class="LineNr">12 </span><span class="subxComment">#   $ echo $?</span>
@@ -76,7 +76,7 @@ if ('onhashchange' in window) {
 <span id="L18" class="LineNr">18 </span><span class="subxComment">#   ........</span>
 <span id="L19" class="LineNr">19 </span><span class="subxComment"># Every '.' indicates a passing test. Failing tests get a 'F'.</span>
 <span id="L20" class="LineNr">20 </span><span class="subxComment">#</span>
-<span id="L21" class="LineNr">21 </span><span class="subxComment"># Compare apps/factorial3.subx</span>
+<span id="L21" class="LineNr">21 </span><span class="subxComment"># Compare factorial3.subx</span>
 <span id="L22" class="LineNr">22 </span>
 <span id="L23" class="LineNr">23 </span>== code
 <span id="L24" class="LineNr">24 </span>
^
b21edfaa ^
9482ce61 ^
30b5f112 ^





09cd2881 ^


a952776b ^
09cd2881 ^


1900402f ^
30b5f112 ^


446027b9 ^
30b5f112 ^






316b6a7b ^
30b5f112 ^
316b6a7b ^
cce01f1d ^
316b6a7b ^

30b5f112 ^
216493ef ^
316b6a7b ^
16fbdedc ^
b4482b9f ^
216493ef ^

b4482b9f ^
216493ef ^

b4482b9f ^
216493ef ^
5bccee93 ^
abc2f0de ^
97d96746 ^

cce01f1d ^
5bccee93 ^
f91b21a1 ^
2bda22c3 ^
a00095c8 ^
2bda22c3 ^

30b5f112 ^
b21edfaa ^
f082563b ^
57dc5f14 ^
01e13f98 ^
295cb0da ^
56602278 ^
f0f3a739 ^
35239ee3 ^

84ccee20 ^
fb7001cf ^
72c1c496 ^
bab75cae ^
0aa758cb ^
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