about summary refs log tree commit diff stats
path: root/html/059to_text.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-01-25 22:39:31 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-25 22:39:31 -0800
commit805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (patch)
treeea5225bdd7c5fbeea912671cdc5f1c4b2b2828d7 /html/059to_text.mu.html
parentaefa8fec6a473be459a2ff33e6bd96e7c22ced20 (diff)
downloadmu-805d58c6aeeeba3e4989c0eed6781b3861e8fae0.tar.gz
4199
Diffstat (limited to 'html/059to_text.mu.html')
-rw-r--r--html/059to_text.mu.html13
1 files changed, 6 insertions, 7 deletions
diff --git a/html/059to_text.mu.html b/html/059to_text.mu.html
index 885d16f5..d8b1c079 100644
--- a/html/059to_text.mu.html
+++ b/html/059to_text.mu.html
@@ -15,14 +15,13 @@ body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color
 a { color:#eeeeee; text-decoration: none; }
 a:hover { text-decoration: underline; }
 * { font-size: 12pt; font-size: 1em; }
+.muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.Conceal { color: #4e4e4e; }
 .LineNr { color: #444444; }
-.Comment { color: #9090ff; }
-.Comment a { color:#0000ee; text-decoration:underline; }
 .Constant { color: #00a0a0; }
 .Special { color: #c00000; }
-.muRecipe { color: #ff8700; }
+.Comment { color: #9090ff; }
+.Comment a { color:#0000ee; text-decoration:underline; }
 -->
 </style>
 
@@ -72,7 +71,7 @@ if ('onhashchange' in window) {
 <span id="L13" class="LineNr">13 </span>]
 <span id="L14" class="LineNr">14 </span>
 <span id="L15" class="LineNr">15 </span><span class="Comment"># variant for arrays (since we can't pass them around otherwise)</span>
-<span id="L16" class="LineNr">16 </span><span class="muRecipe">def</span> <a href='059to_text.mu.html#L16'>array-to-text-line</a> x:&amp;:@:_elem<span class="muRecipe"> -&gt; </span>y:text [
+<span id="L16" class="LineNr">16 </span><span class="muRecipe">def</span> array-to-text-line x:&amp;:@:_elem<span class="muRecipe"> -&gt; </span>y:text [
 <span id="L17" class="LineNr">17 </span>  <span class="Constant">local-scope</span>
 <span id="L18" class="LineNr">18 </span>  <span class="Constant">load-inputs</span>
 <span id="L19" class="LineNr">19 </span>  y <span class="Special">&lt;-</span> to-text *x
@@ -85,7 +84,7 @@ if ('onhashchange' in window) {
 <span id="L26" class="LineNr">26 </span>
 <span id="L27" class="LineNr">27 </span><span class="muScenario">scenario</span> array-to-text-line-early-warning-for-static-dispatch [
 <span id="L28" class="LineNr">28 </span>  n:&amp;:@:num <span class="Special">&lt;-</span> new <span class="Constant">number:type</span>,<span class="Constant"> 3</span>
-<span id="L29" class="LineNr">29 </span>  x:text <span class="Special">&lt;-</span> <a href='059to_text.mu.html#L16'>array-to-text-line</a> n
+<span id="L29" class="LineNr">29 </span>  x:text <span class="Special">&lt;-</span> array-to-text-line n
 <span id="L30" class="LineNr">30 </span>  <span class="Comment"># just ensure there were no errors</span>
 <span id="L31" class="LineNr">31 </span>]
 <span id="L32" class="LineNr">32 </span>
@@ -102,7 +101,7 @@ if ('onhashchange' in window) {
 <span id="L43" class="LineNr">43 </span>  2:text <span class="Special">&lt;-</span> to-text 1:char
 <span id="L44" class="LineNr">44 </span>  3:@:char <span class="Special">&lt;-</span> copy *2:text
 <span id="L45" class="LineNr">45 </span>  memory-should-contain [
-<span id="L46" class="LineNr">46 </span>  <span class="Conceal">¦</span> 3:array:character <span class="Special">&lt;-</span> <span class="Constant">[o]</span>
+<span id="L46" class="LineNr">46 </span>    3:array:character <span class="Special">&lt;-</span> <span class="Constant">[o]</span>
 <span id="L47" class="LineNr">47 </span>  ]
 <span id="L48" class="LineNr">48 </span>]
 </pre>
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402