about summary refs log tree commit diff stats
path: root/tangle.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-11 12:00:50 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-11 12:09:50 -0700
commitd2244a2f117618df541c52a1f7ec5d0fed8bcb7a (patch)
treeb0ba8cbe4cd30d176822227864a7343e3246cd99 /tangle.mu
parent272e786bda374bd256759344b70f32381e021ee1 (diff)
downloadmu-d2244a2f117618df541c52a1f7ec5d0fed8bcb7a.tar.gz
1345
Diffstat (limited to 'tangle.mu')
-rw-r--r--tangle.mu9
1 files changed, 6 insertions, 3 deletions
diff --git a/tangle.mu b/tangle.mu
index 10829ca5..cb322e46 100644
--- a/tangle.mu
+++ b/tangle.mu
@@ -1,6 +1,9 @@
-# To demonstrate tangle directives, we'll construct a factorial function with
-# separate base and recursive cases. Compare factorial.mu.
-# This isn't a very realistic example, just a simple demonstration of
+# example program: constructing recipes out of order
+#
+# We construct a factorial function with separate base and recursive cases.
+# Compare factorial.mu.
+#
+# This isn't a very tasteful example, just a simple demonstration of
 # possibilities.
 
 recipe factorial [
'n134' href='#n134'>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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214