about summary refs log tree commit diff stats
path: root/html/081print.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/081print.mu.html')
-rw-r--r--html/081print.mu.html206
1 files changed, 103 insertions, 103 deletions
diff --git a/html/081print.mu.html b/html/081print.mu.html
index 9117b479..834666ac 100644
--- a/html/081print.mu.html
+++ b/html/081print.mu.html
@@ -60,46 +60,46 @@ if ('onhashchange' in window) {
 <span id="L1" class="LineNr">  1 </span><span class="Comment"># Wrappers around print primitives that take a 'screen' object and are thus</span>
 <span id="L2" class="LineNr">  2 </span><span class="Comment"># easier to test.</span>
 <span id="L3" class="LineNr">  3 </span>
-<span id="L4" class="LineNr">  4 </span><span class="muData">container</span> screen [
+<span id="L4" class="LineNr">  4 </span><span class="muData">container</span> <a href='081print.mu.html#L4'>screen</a> [
 <span id="L5" class="LineNr">  5 </span>  num-rows:num
 <span id="L6" class="LineNr">  6 </span>  num-columns:num
 <span id="L7" class="LineNr">  7 </span>  cursor-row:num
 <span id="L8" class="LineNr">  8 </span>  cursor-column:num
-<span id="L9" class="LineNr">  9 </span>  data:&amp;:@:screen-cell
+<span id="L9" class="LineNr">  9 </span>  data:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a>
 <span id="L10" class="LineNr"> 10 </span>]
 <span id="L11" class="LineNr"> 11 </span>
-<span id="L12" class="LineNr"> 12 </span><span class="muData">container</span> screen-cell [
+<span id="L12" class="LineNr"> 12 </span><span class="muData">container</span> <a href='081print.mu.html#L12'>screen-cell</a> [
 <span id="L13" class="LineNr"> 13 </span>  contents:char
 <span id="L14" class="LineNr"> 14 </span>  color:num
 <span id="L15" class="LineNr"> 15 </span>]
 <span id="L16" class="LineNr"> 16 </span>
-<span id="L17" class="LineNr"> 17 </span><span class="muRecipe">def</span> new-fake-screen w:num, h:num<span class="muRecipe"> -&gt; </span>result:&amp;:screen [
+<span id="L17" class="LineNr"> 17 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L17'>new-fake-screen</a> w:num, h:num<span class="muRecipe"> -&gt; </span>result:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L18" class="LineNr"> 18 </span>  <span class="Constant">local-scope</span>
 <span id="L19" class="LineNr"> 19 </span>  <span class="Constant">load-ingredients</span>
-<span id="L20" class="LineNr"> 20 </span>  result <span class="Special">&lt;-</span> new <span class="Constant">screen:type</span>
+<span id="L20" class="LineNr"> 20 </span>  result <span class="Special">&lt;-</span> new <span class="Constant"><a href='081print.mu.html#L4'>screen</a>:type</span>
 <span id="L21" class="LineNr"> 21 </span>  bufsize:num <span class="Special">&lt;-</span> multiply w, h
-<span id="L22" class="LineNr"> 22 </span>  data:&amp;:@:screen-cell <span class="Special">&lt;-</span> new <span class="Constant">screen-cell:type</span>, bufsize
+<span id="L22" class="LineNr"> 22 </span>  data:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> new <span class="Constant"><a href='081print.mu.html#L12'>screen-cell</a>:type</span>, bufsize
 <span id="L23" class="LineNr"> 23 </span>  *result <span class="Special">&lt;-</span> merge h/num-rows, w/num-columns, <span class="Constant">0/cursor-row</span>, <span class="Constant">0/cursor-column</span>, data
-<span id="L24" class="LineNr"> 24 </span>  result <span class="Special">&lt;-</span> clear-screen result
+<span id="L24" class="LineNr"> 24 </span>  result <span class="Special">&lt;-</span> <a href='081print.mu.html#L27'>clear-screen</a> result
 <span id="L25" class="LineNr"> 25 </span>]
 <span id="L26" class="LineNr"> 26 </span>
-<span id="L27" class="LineNr"> 27 </span><span class="muRecipe">def</span> clear-screen screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L27" class="LineNr"> 27 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L27'>clear-screen</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L28" class="LineNr"> 28 </span>  <span class="Constant">local-scope</span>
 <span id="L29" class="LineNr"> 29 </span>  <span class="Constant">load-ingredients</span>
 <span id="L30" class="LineNr"> 30 </span>  <span class="Delimiter">{</span>
-<span id="L31" class="LineNr"> 31 </span>    <span class="muControl">break-if</span> screen
+<span id="L31" class="LineNr"> 31 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L32" class="LineNr"> 32 </span>    <span class="Comment"># real screen</span>
 <span id="L33" class="LineNr"> 33 </span>    clear-display
 <span id="L34" class="LineNr"> 34 </span>    <span class="muControl">return</span>
 <span id="L35" class="LineNr"> 35 </span>  <span class="Delimiter">}</span>
 <span id="L36" class="LineNr"> 36 </span>  <span class="Comment"># fake screen</span>
-<span id="L37" class="LineNr"> 37 </span>  buf:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *screen, <span class="Constant">data:offset</span>
+<span id="L37" class="LineNr"> 37 </span>  buf:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *screen, <span class="Constant">data:offset</span>
 <span id="L38" class="LineNr"> 38 </span>  max:num <span class="Special">&lt;-</span> length *buf
 <span id="L39" class="LineNr"> 39 </span>  i:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
 <span id="L40" class="LineNr"> 40 </span>  <span class="Delimiter">{</span>
 <span id="L41" class="LineNr"> 41 </span>    done?:bool <span class="Special">&lt;-</span> greater-or-equal i, max
 <span id="L42" class="LineNr"> 42 </span>    <span class="muControl">break-if</span> done?
-<span id="L43" class="LineNr"> 43 </span>    curr:screen-cell <span class="Special">&lt;-</span> merge <span class="Constant">0/empty</span>, <span class="Constant">7/white</span>
+<span id="L43" class="LineNr"> 43 </span>    curr:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> merge <span class="Constant">0/empty</span>, <span class="Constant">7/white</span>
 <span id="L44" class="LineNr"> 44 </span>    *buf <span class="Special">&lt;-</span> put-index *buf, i, curr
 <span id="L45" class="LineNr"> 45 </span>    i <span class="Special">&lt;-</span> add i,<span class="Constant"> 1</span>
 <span id="L46" class="LineNr"> 46 </span>    <span class="muControl">loop</span>
@@ -109,24 +109,24 @@ if ('onhashchange' in window) {
 <span id="L50" class="LineNr"> 50 </span>  *screen <span class="Special">&lt;-</span> put *screen, <span class="Constant">cursor-column:offset</span>,<span class="Constant"> 0</span>
 <span id="L51" class="LineNr"> 51 </span>]
 <span id="L52" class="LineNr"> 52 </span>
-<span id="L53" class="LineNr"> 53 </span><span class="muRecipe">def</span> sync-screen screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L53" class="LineNr"> 53 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L53'>sync-screen</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L54" class="LineNr"> 54 </span>  <span class="Constant">local-scope</span>
 <span id="L55" class="LineNr"> 55 </span>  <span class="Constant">load-ingredients</span>
-<span id="L56" class="LineNr"> 56 </span>  <span class="muControl">return-if</span> screen  <span class="Comment"># do nothing for fake screens</span>
+<span id="L56" class="LineNr"> 56 </span>  <span class="muControl">return-if</span> <a href='081print.mu.html#L4'>screen</a>  <span class="Comment"># do nothing for fake screens</span>
 <span id="L57" class="LineNr"> 57 </span>  sync-display
 <span id="L58" class="LineNr"> 58 </span>]
 <span id="L59" class="LineNr"> 59 </span>
-<span id="L60" class="LineNr"> 60 </span><span class="muRecipe">def</span> fake-screen-is-empty? screen:&amp;:screen<span class="muRecipe"> -&gt; </span>result:bool [
+<span id="L60" class="LineNr"> 60 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L60'>fake-screen-is-empty?</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span>result:bool [
 <span id="L61" class="LineNr"> 61 </span>  <span class="Constant">local-scope</span>
 <span id="L62" class="LineNr"> 62 </span>  <span class="Constant">load-ingredients</span>
-<span id="L63" class="LineNr"> 63 </span>  <span class="muControl">return-unless</span> screen, <span class="Constant">1/true</span>  <span class="Comment"># do nothing for real screens</span>
-<span id="L64" class="LineNr"> 64 </span>  buf:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *screen, <span class="Constant">data:offset</span>
+<span id="L63" class="LineNr"> 63 </span>  <span class="muControl">return-unless</span> <a href='081print.mu.html#L4'>screen</a>, <span class="Constant">1/true</span>  <span class="Comment"># do nothing for real screens</span>
+<span id="L64" class="LineNr"> 64 </span>  buf:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *screen, <span class="Constant">data:offset</span>
 <span id="L65" class="LineNr"> 65 </span>  i:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
 <span id="L66" class="LineNr"> 66 </span>  len:num <span class="Special">&lt;-</span> length *buf
 <span id="L67" class="LineNr"> 67 </span>  <span class="Delimiter">{</span>
 <span id="L68" class="LineNr"> 68 </span>    done?:bool <span class="Special">&lt;-</span> greater-or-equal i, len
 <span id="L69" class="LineNr"> 69 </span>    <span class="muControl">break-if</span> done?
-<span id="L70" class="LineNr"> 70 </span>    curr:screen-cell <span class="Special">&lt;-</span> index *buf, i
+<span id="L70" class="LineNr"> 70 </span>    curr:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> index *buf, i
 <span id="L71" class="LineNr"> 71 </span>    curr-contents:char <span class="Special">&lt;-</span> get curr, <span class="Constant">contents:offset</span>
 <span id="L72" class="LineNr"> 72 </span>    i <span class="Special">&lt;-</span> add i,<span class="Constant"> 1</span>
 <span id="L73" class="LineNr"> 73 </span>    <span class="muControl">loop-unless</span> curr-contents
@@ -136,7 +136,7 @@ if ('onhashchange' in window) {
 <span id="L77" class="LineNr"> 77 </span>  <span class="muControl">return</span> <span class="Constant">1/true</span>
 <span id="L78" class="LineNr"> 78 </span>]
 <span id="L79" class="LineNr"> 79 </span>
-<span id="L80" class="LineNr"> 80 </span><span class="muRecipe">def</span> print screen:&amp;:screen, c:char<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L80" class="LineNr"> 80 </span><span class="muRecipe">def</span> print <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, c:char<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L81" class="LineNr"> 81 </span>  <span class="Constant">local-scope</span>
 <span id="L82" class="LineNr"> 82 </span>  <span class="Constant">load-ingredients</span>
 <span id="L83" class="LineNr"> 83 </span>  color:num, color-found?:bool <span class="Special">&lt;-</span> <span class="Constant">next-ingredient</span>
@@ -155,7 +155,7 @@ if ('onhashchange' in window) {
 <span id="L96" class="LineNr"> 96 </span>  trace<span class="Constant"> 90</span>, <span class="Constant">[print-character]</span>, c2
 <span id="L97" class="LineNr"> 97 </span>  <span class="Delimiter">{</span>
 <span id="L98" class="LineNr"> 98 </span>    <span class="Comment"># real screen</span>
-<span id="L99" class="LineNr"> 99 </span>    <span class="muControl">break-if</span> screen
+<span id="L99" class="LineNr"> 99 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L100" class="LineNr">100 </span>    print-character-to-display c, color, bg-color
 <span id="L101" class="LineNr">101 </span>    <span class="muControl">return</span>
 <span id="L102" class="LineNr">102 </span>  <span class="Delimiter">}</span>
@@ -197,7 +197,7 @@ if ('onhashchange' in window) {
 <span id="L138" class="LineNr">138 </span>  <span class="Comment"># save character in fake screen</span>
 <span id="L139" class="LineNr">139 </span>  index:num <span class="Special">&lt;-</span> multiply row, width
 <span id="L140" class="LineNr">140 </span>  index <span class="Special">&lt;-</span> add index, column
-<span id="L141" class="LineNr">141 </span>  buf:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *screen, <span class="Constant">data:offset</span>
+<span id="L141" class="LineNr">141 </span>  buf:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *screen, <span class="Constant">data:offset</span>
 <span id="L142" class="LineNr">142 </span>  len:num <span class="Special">&lt;-</span> length *buf
 <span id="L143" class="LineNr">143 </span>  <span class="Comment"># special-case: backspace</span>
 <span id="L144" class="LineNr">144 </span>  <span class="Delimiter">{</span>
@@ -211,12 +211,12 @@ if ('onhashchange' in window) {
 <span id="L152" class="LineNr">152 </span>      column <span class="Special">&lt;-</span> subtract column,<span class="Constant"> 1</span>
 <span id="L153" class="LineNr">153 </span>      *screen <span class="Special">&lt;-</span> put *screen, <span class="Constant">cursor-column:offset</span>, column
 <span id="L154" class="LineNr">154 </span>      index <span class="Special">&lt;-</span> subtract index,<span class="Constant"> 1</span>
-<span id="L155" class="LineNr">155 </span>      cursor:screen-cell <span class="Special">&lt;-</span> merge <span class="Constant">32/space</span>, <span class="Constant">7/white</span>
+<span id="L155" class="LineNr">155 </span>      cursor:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> merge <span class="Constant">32/space</span>, <span class="Constant">7/white</span>
 <span id="L156" class="LineNr">156 </span>      *buf <span class="Special">&lt;-</span> put-index *buf, index, cursor
 <span id="L157" class="LineNr">157 </span>    <span class="Delimiter">}</span>
 <span id="L158" class="LineNr">158 </span>    <span class="muControl">return</span>
 <span id="L159" class="LineNr">159 </span>  <span class="Delimiter">}</span>
-<span id="L160" class="LineNr">160 </span>  cursor:screen-cell <span class="Special">&lt;-</span> merge c, color
+<span id="L160" class="LineNr">160 </span>  cursor:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> merge c, color
 <span id="L161" class="LineNr">161 </span>  *buf <span class="Special">&lt;-</span> put-index *buf, index, cursor
 <span id="L162" class="LineNr">162 </span>  <span class="Comment"># increment column unless it's already all the way to the right</span>
 <span id="L163" class="LineNr">163 </span>  <span class="Delimiter">{</span>
@@ -230,12 +230,12 @@ if ('onhashchange' in window) {
 <span id="L171" class="LineNr">171 </span>
 <span id="L172" class="LineNr">172 </span><span class="muScenario">scenario</span> print-character-at-top-left [
 <span id="L173" class="LineNr">173 </span>  <span class="Constant">local-scope</span>
-<span id="L174" class="LineNr">174 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L174" class="LineNr">174 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L175" class="LineNr">175 </span>  run [
 <span id="L176" class="LineNr">176 </span>    a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L177" class="LineNr">177 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, a:char
-<span id="L178" class="LineNr">178 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L179" class="LineNr">179 </span>    1:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L178" class="LineNr">178 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L179" class="LineNr">179 </span>    1:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L180" class="LineNr">180 </span>  ]
 <span id="L181" class="LineNr">181 </span>  memory-should-contain [
 <span id="L182" class="LineNr">182 </span>   <span class="Constant"> 1</span> <span class="Special">&lt;-</span><span class="Constant"> 6</span>  <span class="Comment"># width*height</span>
@@ -248,13 +248,13 @@ if ('onhashchange' in window) {
 <span id="L189" class="LineNr">189 </span>
 <span id="L190" class="LineNr">190 </span><span class="muScenario">scenario</span> print-character-at-fractional-coordinate [
 <span id="L191" class="LineNr">191 </span>  <span class="Constant">local-scope</span>
-<span id="L192" class="LineNr">192 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L192" class="LineNr">192 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L193" class="LineNr">193 </span>  a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L194" class="LineNr">194 </span>  run [
-<span id="L195" class="LineNr">195 </span>    move-cursor fake-screen, 0.5,<span class="Constant"> 0</span>
+<span id="L195" class="LineNr">195 </span>    <a href='081print.mu.html#L442'>move-cursor</a> fake-screen, 0.5,<span class="Constant"> 0</span>
 <span id="L196" class="LineNr">196 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, a:char
-<span id="L197" class="LineNr">197 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L198" class="LineNr">198 </span>    1:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L197" class="LineNr">197 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L198" class="LineNr">198 </span>    1:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L199" class="LineNr">199 </span>  ]
 <span id="L200" class="LineNr">200 </span>  memory-should-contain [
 <span id="L201" class="LineNr">201 </span>   <span class="Constant"> 1</span> <span class="Special">&lt;-</span><span class="Constant"> 6</span>  <span class="Comment"># width*height</span>
@@ -267,12 +267,12 @@ if ('onhashchange' in window) {
 <span id="L208" class="LineNr">208 </span>
 <span id="L209" class="LineNr">209 </span><span class="muScenario">scenario</span> print-character-in-color [
 <span id="L210" class="LineNr">210 </span>  <span class="Constant">local-scope</span>
-<span id="L211" class="LineNr">211 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L211" class="LineNr">211 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L212" class="LineNr">212 </span>  run [
 <span id="L213" class="LineNr">213 </span>    a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L214" class="LineNr">214 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, a:char, <span class="Constant">1/red</span>
-<span id="L215" class="LineNr">215 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L216" class="LineNr">216 </span>    1:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L215" class="LineNr">215 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L216" class="LineNr">216 </span>    1:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L217" class="LineNr">217 </span>  ]
 <span id="L218" class="LineNr">218 </span>  memory-should-contain [
 <span id="L219" class="LineNr">219 </span>   <span class="Constant"> 1</span> <span class="Special">&lt;-</span><span class="Constant"> 6</span>  <span class="Comment"># width*height</span>
@@ -285,15 +285,15 @@ if ('onhashchange' in window) {
 <span id="L226" class="LineNr">226 </span>
 <span id="L227" class="LineNr">227 </span><span class="muScenario">scenario</span> print-backspace-character [
 <span id="L228" class="LineNr">228 </span>  <span class="Constant">local-scope</span>
-<span id="L229" class="LineNr">229 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L229" class="LineNr">229 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L230" class="LineNr">230 </span>  a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L231" class="LineNr">231 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, a
 <span id="L232" class="LineNr">232 </span>  run [
 <span id="L233" class="LineNr">233 </span>    backspace:char <span class="Special">&lt;-</span> copy <span class="Constant">8/backspace</span>
 <span id="L234" class="LineNr">234 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, backspace
 <span id="L235" class="LineNr">235 </span>    10:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">cursor-column:offset</span>
-<span id="L236" class="LineNr">236 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L237" class="LineNr">237 </span>    11:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L236" class="LineNr">236 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L237" class="LineNr">237 </span>    11:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L238" class="LineNr">238 </span>  ]
 <span id="L239" class="LineNr">239 </span>  memory-should-contain [
 <span id="L240" class="LineNr">240 </span>   <span class="Constant"> 10</span> <span class="Special">&lt;-</span><span class="Constant"> 0</span>  <span class="Comment"># cursor column</span>
@@ -307,7 +307,7 @@ if ('onhashchange' in window) {
 <span id="L248" class="LineNr">248 </span>
 <span id="L249" class="LineNr">249 </span><span class="muScenario">scenario</span> print-extra-backspace-character [
 <span id="L250" class="LineNr">250 </span>  <span class="Constant">local-scope</span>
-<span id="L251" class="LineNr">251 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L251" class="LineNr">251 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L252" class="LineNr">252 </span>  a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L253" class="LineNr">253 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, a
 <span id="L254" class="LineNr">254 </span>  run [
@@ -315,8 +315,8 @@ if ('onhashchange' in window) {
 <span id="L256" class="LineNr">256 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, backspace
 <span id="L257" class="LineNr">257 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, backspace  <span class="Comment"># cursor already at left margin</span>
 <span id="L258" class="LineNr">258 </span>    1:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">cursor-column:offset</span>
-<span id="L259" class="LineNr">259 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L260" class="LineNr">260 </span>    3:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L259" class="LineNr">259 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L260" class="LineNr">260 </span>    3:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L261" class="LineNr">261 </span>  ]
 <span id="L262" class="LineNr">262 </span>  memory-should-contain [
 <span id="L263" class="LineNr">263 </span>   <span class="Constant"> 1</span> <span class="Special">&lt;-</span><span class="Constant"> 0</span>  <span class="Comment"># cursor column</span>
@@ -331,7 +331,7 @@ if ('onhashchange' in window) {
 <span id="L272" class="LineNr">272 </span><span class="muScenario">scenario</span> print-character-at-right-margin [
 <span id="L273" class="LineNr">273 </span>  <span class="Comment"># fill top row of screen with text</span>
 <span id="L274" class="LineNr">274 </span>  <span class="Constant">local-scope</span>
-<span id="L275" class="LineNr">275 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">2/width</span>, <span class="Constant">2/height</span>
+<span id="L275" class="LineNr">275 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">2/width</span>, <span class="Constant">2/height</span>
 <span id="L276" class="LineNr">276 </span>  a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L277" class="LineNr">277 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, a
 <span id="L278" class="LineNr">278 </span>  b:char <span class="Special">&lt;-</span> copy <span class="Constant">98/b</span>
@@ -341,8 +341,8 @@ if ('onhashchange' in window) {
 <span id="L282" class="LineNr">282 </span>    c:char <span class="Special">&lt;-</span> copy <span class="Constant">99/c</span>
 <span id="L283" class="LineNr">283 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, c
 <span id="L284" class="LineNr">284 </span>    10:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">cursor-column:offset</span>
-<span id="L285" class="LineNr">285 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L286" class="LineNr">286 </span>    11:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L285" class="LineNr">285 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L286" class="LineNr">286 </span>    11:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L287" class="LineNr">287 </span>  ]
 <span id="L288" class="LineNr">288 </span>  memory-should-contain [
 <span id="L289" class="LineNr">289 </span>   <span class="Constant"> 10</span> <span class="Special">&lt;-</span><span class="Constant"> 1</span>  <span class="Comment"># cursor column</span>
@@ -358,7 +358,7 @@ if ('onhashchange' in window) {
 <span id="L299" class="LineNr">299 </span>
 <span id="L300" class="LineNr">300 </span><span class="muScenario">scenario</span> print-newline-character [
 <span id="L301" class="LineNr">301 </span>  <span class="Constant">local-scope</span>
-<span id="L302" class="LineNr">302 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L302" class="LineNr">302 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L303" class="LineNr">303 </span>  a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L304" class="LineNr">304 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, a
 <span id="L305" class="LineNr">305 </span>  run [
@@ -366,8 +366,8 @@ if ('onhashchange' in window) {
 <span id="L307" class="LineNr">307 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, newline
 <span id="L308" class="LineNr">308 </span>    10:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">cursor-row:offset</span>
 <span id="L309" class="LineNr">309 </span>    11:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">cursor-column:offset</span>
-<span id="L310" class="LineNr">310 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L311" class="LineNr">311 </span>    12:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L310" class="LineNr">310 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L311" class="LineNr">311 </span>    12:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L312" class="LineNr">312 </span>  ]
 <span id="L313" class="LineNr">313 </span>  memory-should-contain [
 <span id="L314" class="LineNr">314 </span>   <span class="Constant"> 10</span> <span class="Special">&lt;-</span><span class="Constant"> 1</span>  <span class="Comment"># cursor row</span>
@@ -382,7 +382,7 @@ if ('onhashchange' in window) {
 <span id="L323" class="LineNr">323 </span>
 <span id="L324" class="LineNr">324 </span><span class="muScenario">scenario</span> print-newline-at-bottom-line [
 <span id="L325" class="LineNr">325 </span>  <span class="Constant">local-scope</span>
-<span id="L326" class="LineNr">326 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L326" class="LineNr">326 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L327" class="LineNr">327 </span>  newline:char <span class="Special">&lt;-</span> copy <span class="Constant">10/newline</span>
 <span id="L328" class="LineNr">328 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, newline
 <span id="L329" class="LineNr">329 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, newline
@@ -401,7 +401,7 @@ if ('onhashchange' in window) {
 <span id="L342" class="LineNr">342 </span>
 <span id="L343" class="LineNr">343 </span><span class="muScenario">scenario</span> print-character-at-bottom-right [
 <span id="L344" class="LineNr">344 </span>  <span class="Constant">local-scope</span>
-<span id="L345" class="LineNr">345 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">2/width</span>, <span class="Constant">2/height</span>
+<span id="L345" class="LineNr">345 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">2/width</span>, <span class="Constant">2/height</span>
 <span id="L346" class="LineNr">346 </span>  newline:char <span class="Special">&lt;-</span> copy <span class="Constant">10/newline</span>
 <span id="L347" class="LineNr">347 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, newline
 <span id="L348" class="LineNr">348 </span>  a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
@@ -417,8 +417,8 @@ if ('onhashchange' in window) {
 <span id="L358" class="LineNr">358 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, d
 <span id="L359" class="LineNr">359 </span>    10:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">cursor-row:offset</span>
 <span id="L360" class="LineNr">360 </span>    11:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">cursor-column:offset</span>
-<span id="L361" class="LineNr">361 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L362" class="LineNr">362 </span>    20:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L361" class="LineNr">361 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L362" class="LineNr">362 </span>    20:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L363" class="LineNr">363 </span>  ]
 <span id="L364" class="LineNr">364 </span>  memory-should-contain [
 <span id="L365" class="LineNr">365 </span>   <span class="Constant"> 10</span> <span class="Special">&lt;-</span><span class="Constant"> 1</span>  <span class="Comment"># cursor row</span>
@@ -437,12 +437,12 @@ if ('onhashchange' in window) {
 <span id="L378" class="LineNr">378 </span>  ]
 <span id="L379" class="LineNr">379 </span>]
 <span id="L380" class="LineNr">380 </span>
-<span id="L381" class="LineNr">381 </span><span class="muRecipe">def</span> clear-line screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L381" class="LineNr">381 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L381'>clear-line</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L382" class="LineNr">382 </span>  <span class="Constant">local-scope</span>
 <span id="L383" class="LineNr">383 </span>  <span class="Constant">load-ingredients</span>
 <span id="L384" class="LineNr">384 </span>  space:char <span class="Special">&lt;-</span> copy <span class="Constant">0/nul</span>
 <span id="L385" class="LineNr">385 </span>  <span class="Delimiter">{</span>
-<span id="L386" class="LineNr">386 </span>    <span class="muControl">break-if</span> screen
+<span id="L386" class="LineNr">386 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L387" class="LineNr">387 </span>    <span class="Comment"># real screen</span>
 <span id="L388" class="LineNr">388 </span>    clear-line-on-display
 <span id="L389" class="LineNr">389 </span>    <span class="muControl">return</span>
@@ -456,7 +456,7 @@ if ('onhashchange' in window) {
 <span id="L397" class="LineNr">397 </span>    right:num <span class="Special">&lt;-</span> subtract width,<span class="Constant"> 1</span>
 <span id="L398" class="LineNr">398 </span>    done?:bool <span class="Special">&lt;-</span> greater-or-equal column, right
 <span id="L399" class="LineNr">399 </span>    <span class="muControl">break-if</span> done?
-<span id="L400" class="LineNr">400 </span>    print screen, space
+<span id="L400" class="LineNr">400 </span>    print <a href='081print.mu.html#L4'>screen</a>, space
 <span id="L401" class="LineNr">401 </span>    column <span class="Special">&lt;-</span> add column,<span class="Constant"> 1</span>
 <span id="L402" class="LineNr">402 </span>    <span class="muControl">loop</span>
 <span id="L403" class="LineNr">403 </span>  <span class="Delimiter">}</span>
@@ -464,10 +464,10 @@ if ('onhashchange' in window) {
 <span id="L405" class="LineNr">405 </span>  *screen <span class="Special">&lt;-</span> put *screen, <span class="Constant">cursor-column:offset</span>, original-column
 <span id="L406" class="LineNr">406 </span>]
 <span id="L407" class="LineNr">407 </span>
-<span id="L408" class="LineNr">408 </span><span class="muRecipe">def</span> clear-line-until screen:&amp;:screen, right:num/inclusive<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L408" class="LineNr">408 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L408'>clear-line-until</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, right:num/inclusive<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L409" class="LineNr">409 </span>  <span class="Constant">local-scope</span>
 <span id="L410" class="LineNr">410 </span>  <span class="Constant">load-ingredients</span>
-<span id="L411" class="LineNr">411 </span>  _, column:num <span class="Special">&lt;-</span> cursor-position screen
+<span id="L411" class="LineNr">411 </span>  _, column:num <span class="Special">&lt;-</span> <a href='081print.mu.html#L428'>cursor-position</a> <a href='081print.mu.html#L4'>screen</a>
 <span id="L412" class="LineNr">412 </span>  space:char <span class="Special">&lt;-</span> copy <span class="Constant">32/space</span>
 <span id="L413" class="LineNr">413 </span>  bg-color:num, bg-color-found?:bool <span class="Special">&lt;-</span> <span class="Constant">next-ingredient</span>
 <span id="L414" class="LineNr">414 </span>  <span class="Delimiter">{</span>
@@ -478,17 +478,17 @@ if ('onhashchange' in window) {
 <span id="L419" class="LineNr">419 </span>  <span class="Delimiter">{</span>
 <span id="L420" class="LineNr">420 </span>    done?:bool <span class="Special">&lt;-</span> greater-than column, right
 <span id="L421" class="LineNr">421 </span>    <span class="muControl">break-if</span> done?
-<span id="L422" class="LineNr">422 </span>    screen <span class="Special">&lt;-</span> print screen, space, <span class="Constant">7/white</span>, bg-color  <span class="Comment"># foreground color is mostly unused except if the cursor shows up at this cell</span>
+<span id="L422" class="LineNr">422 </span>    <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> print <a href='081print.mu.html#L4'>screen</a>, space, <span class="Constant">7/white</span>, bg-color  <span class="Comment"># foreground color is mostly unused except if the cursor shows up at this cell</span>
 <span id="L423" class="LineNr">423 </span>    column <span class="Special">&lt;-</span> add column,<span class="Constant"> 1</span>
 <span id="L424" class="LineNr">424 </span>    <span class="muControl">loop</span>
 <span id="L425" class="LineNr">425 </span>  <span class="Delimiter">}</span>
 <span id="L426" class="LineNr">426 </span>]
 <span id="L427" class="LineNr">427 </span>
-<span id="L428" class="LineNr">428 </span><span class="muRecipe">def</span> cursor-position screen:&amp;:screen<span class="muRecipe"> -&gt; </span>row:num, column:num [
+<span id="L428" class="LineNr">428 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L428'>cursor-position</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span>row:num, column:num [
 <span id="L429" class="LineNr">429 </span>  <span class="Constant">local-scope</span>
 <span id="L430" class="LineNr">430 </span>  <span class="Constant">load-ingredients</span>
 <span id="L431" class="LineNr">431 </span>  <span class="Delimiter">{</span>
-<span id="L432" class="LineNr">432 </span>    <span class="muControl">break-if</span> screen
+<span id="L432" class="LineNr">432 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L433" class="LineNr">433 </span>    <span class="Comment"># real screen</span>
 <span id="L434" class="LineNr">434 </span>    row, column <span class="Special">&lt;-</span> cursor-position-on-display
 <span id="L435" class="LineNr">435 </span>    <span class="muControl">return</span>
@@ -498,11 +498,11 @@ if ('onhashchange' in window) {
 <span id="L439" class="LineNr">439 </span>  column:num <span class="Special">&lt;-</span> get *screen, <span class="Constant">cursor-column:offset</span>
 <span id="L440" class="LineNr">440 </span>]
 <span id="L441" class="LineNr">441 </span>
-<span id="L442" class="LineNr">442 </span><span class="muRecipe">def</span> move-cursor screen:&amp;:screen, new-row:num, new-column:num<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L442" class="LineNr">442 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, new-row:num, new-column:num<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L443" class="LineNr">443 </span>  <span class="Constant">local-scope</span>
 <span id="L444" class="LineNr">444 </span>  <span class="Constant">load-ingredients</span>
 <span id="L445" class="LineNr">445 </span>  <span class="Delimiter">{</span>
-<span id="L446" class="LineNr">446 </span>    <span class="muControl">break-if</span> screen
+<span id="L446" class="LineNr">446 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L447" class="LineNr">447 </span>    <span class="Comment"># real screen</span>
 <span id="L448" class="LineNr">448 </span>    move-cursor-on-display new-row, new-column
 <span id="L449" class="LineNr">449 </span>    <span class="muControl">return</span>
@@ -514,16 +514,16 @@ if ('onhashchange' in window) {
 <span id="L455" class="LineNr">455 </span>
 <span id="L456" class="LineNr">456 </span><span class="muScenario">scenario</span> clear-line-erases-printed-characters [
 <span id="L457" class="LineNr">457 </span>  <span class="Constant">local-scope</span>
-<span id="L458" class="LineNr">458 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L458" class="LineNr">458 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L459" class="LineNr">459 </span>  <span class="Comment"># print a character</span>
 <span id="L460" class="LineNr">460 </span>  a:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
 <span id="L461" class="LineNr">461 </span>  fake-screen <span class="Special">&lt;-</span> print fake-screen, a
 <span id="L462" class="LineNr">462 </span>  <span class="Comment"># move cursor to start of line</span>
-<span id="L463" class="LineNr">463 </span>  fake-screen <span class="Special">&lt;-</span> move-cursor fake-screen, <span class="Constant">0/row</span>, <span class="Constant">0/column</span>
+<span id="L463" class="LineNr">463 </span>  fake-screen <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> fake-screen, <span class="Constant">0/row</span>, <span class="Constant">0/column</span>
 <span id="L464" class="LineNr">464 </span>  run [
-<span id="L465" class="LineNr">465 </span>    fake-screen <span class="Special">&lt;-</span> clear-line fake-screen
-<span id="L466" class="LineNr">466 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L467" class="LineNr">467 </span>    10:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L465" class="LineNr">465 </span>    fake-screen <span class="Special">&lt;-</span> <a href='081print.mu.html#L381'>clear-line</a> fake-screen
+<span id="L466" class="LineNr">466 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L467" class="LineNr">467 </span>    10:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L468" class="LineNr">468 </span>  ]
 <span id="L469" class="LineNr">469 </span>  <span class="Comment"># screen should be blank</span>
 <span id="L470" class="LineNr">470 </span>  memory-should-contain [
@@ -543,11 +543,11 @@ if ('onhashchange' in window) {
 <span id="L484" class="LineNr">484 </span>  ]
 <span id="L485" class="LineNr">485 </span>]
 <span id="L486" class="LineNr">486 </span>
-<span id="L487" class="LineNr">487 </span><span class="muRecipe">def</span> cursor-down screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L487" class="LineNr">487 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L487'>cursor-down</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L488" class="LineNr">488 </span>  <span class="Constant">local-scope</span>
 <span id="L489" class="LineNr">489 </span>  <span class="Constant">load-ingredients</span>
 <span id="L490" class="LineNr">490 </span>  <span class="Delimiter">{</span>
-<span id="L491" class="LineNr">491 </span>    <span class="muControl">break-if</span> screen
+<span id="L491" class="LineNr">491 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L492" class="LineNr">492 </span>    <span class="Comment"># real screen</span>
 <span id="L493" class="LineNr">493 </span>    move-cursor-down-on-display
 <span id="L494" class="LineNr">494 </span>    <span class="muControl">return</span>
@@ -562,11 +562,11 @@ if ('onhashchange' in window) {
 <span id="L503" class="LineNr">503 </span>  *screen <span class="Special">&lt;-</span> put *screen, <span class="Constant">cursor-row:offset</span>, row
 <span id="L504" class="LineNr">504 </span>]
 <span id="L505" class="LineNr">505 </span>
-<span id="L506" class="LineNr">506 </span><span class="muRecipe">def</span> cursor-up screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L506" class="LineNr">506 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L506'>cursor-up</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L507" class="LineNr">507 </span>  <span class="Constant">local-scope</span>
 <span id="L508" class="LineNr">508 </span>  <span class="Constant">load-ingredients</span>
 <span id="L509" class="LineNr">509 </span>  <span class="Delimiter">{</span>
-<span id="L510" class="LineNr">510 </span>    <span class="muControl">break-if</span> screen
+<span id="L510" class="LineNr">510 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L511" class="LineNr">511 </span>    <span class="Comment"># real screen</span>
 <span id="L512" class="LineNr">512 </span>    move-cursor-up-on-display
 <span id="L513" class="LineNr">513 </span>    <span class="muControl">return</span>
@@ -579,11 +579,11 @@ if ('onhashchange' in window) {
 <span id="L520" class="LineNr">520 </span>  *screen <span class="Special">&lt;-</span> put *screen, <span class="Constant">cursor-row:offset</span>, row
 <span id="L521" class="LineNr">521 </span>]
 <span id="L522" class="LineNr">522 </span>
-<span id="L523" class="LineNr">523 </span><span class="muRecipe">def</span> cursor-right screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L523" class="LineNr">523 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L523'>cursor-right</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L524" class="LineNr">524 </span>  <span class="Constant">local-scope</span>
 <span id="L525" class="LineNr">525 </span>  <span class="Constant">load-ingredients</span>
 <span id="L526" class="LineNr">526 </span>  <span class="Delimiter">{</span>
-<span id="L527" class="LineNr">527 </span>    <span class="muControl">break-if</span> screen
+<span id="L527" class="LineNr">527 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L528" class="LineNr">528 </span>    <span class="Comment"># real screen</span>
 <span id="L529" class="LineNr">529 </span>    move-cursor-right-on-display
 <span id="L530" class="LineNr">530 </span>    <span class="muControl">return</span>
@@ -598,11 +598,11 @@ if ('onhashchange' in window) {
 <span id="L539" class="LineNr">539 </span>  *screen <span class="Special">&lt;-</span> put *screen, <span class="Constant">cursor-column:offset</span>, column
 <span id="L540" class="LineNr">540 </span>]
 <span id="L541" class="LineNr">541 </span>
-<span id="L542" class="LineNr">542 </span><span class="muRecipe">def</span> cursor-left screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L542" class="LineNr">542 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L542'>cursor-left</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L543" class="LineNr">543 </span>  <span class="Constant">local-scope</span>
 <span id="L544" class="LineNr">544 </span>  <span class="Constant">load-ingredients</span>
 <span id="L545" class="LineNr">545 </span>  <span class="Delimiter">{</span>
-<span id="L546" class="LineNr">546 </span>    <span class="muControl">break-if</span> screen
+<span id="L546" class="LineNr">546 </span>    <span class="muControl">break-if</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L547" class="LineNr">547 </span>    <span class="Comment"># real screen</span>
 <span id="L548" class="LineNr">548 </span>    move-cursor-left-on-display
 <span id="L549" class="LineNr">549 </span>    <span class="muControl">return</span>
@@ -615,33 +615,33 @@ if ('onhashchange' in window) {
 <span id="L556" class="LineNr">556 </span>  *screen <span class="Special">&lt;-</span> put *screen, <span class="Constant">cursor-column:offset</span>, column
 <span id="L557" class="LineNr">557 </span>]
 <span id="L558" class="LineNr">558 </span>
-<span id="L559" class="LineNr">559 </span><span class="muRecipe">def</span> cursor-to-start-of-line screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L559" class="LineNr">559 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L559'>cursor-to-start-of-line</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L560" class="LineNr">560 </span>  <span class="Constant">local-scope</span>
 <span id="L561" class="LineNr">561 </span>  <span class="Constant">load-ingredients</span>
-<span id="L562" class="LineNr">562 </span>  row:num <span class="Special">&lt;-</span> cursor-position screen
+<span id="L562" class="LineNr">562 </span>  row:num <span class="Special">&lt;-</span> <a href='081print.mu.html#L428'>cursor-position</a> <a href='081print.mu.html#L4'>screen</a>
 <span id="L563" class="LineNr">563 </span>  column:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
-<span id="L564" class="LineNr">564 </span>  screen <span class="Special">&lt;-</span> move-cursor screen, row, column
+<span id="L564" class="LineNr">564 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, column
 <span id="L565" class="LineNr">565 </span>]
 <span id="L566" class="LineNr">566 </span>
-<span id="L567" class="LineNr">567 </span><span class="muRecipe">def</span> cursor-to-next-line screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L567" class="LineNr">567 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L567'>cursor-to-next-line</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L568" class="LineNr">568 </span>  <span class="Constant">local-scope</span>
 <span id="L569" class="LineNr">569 </span>  <span class="Constant">load-ingredients</span>
-<span id="L570" class="LineNr">570 </span>  screen <span class="Special">&lt;-</span> cursor-down screen
-<span id="L571" class="LineNr">571 </span>  screen <span class="Special">&lt;-</span> cursor-to-start-of-line screen
+<span id="L570" class="LineNr">570 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L487'>cursor-down</a> <a href='081print.mu.html#L4'>screen</a>
+<span id="L571" class="LineNr">571 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L559'>cursor-to-start-of-line</a> <a href='081print.mu.html#L4'>screen</a>
 <span id="L572" class="LineNr">572 </span>]
 <span id="L573" class="LineNr">573 </span>
-<span id="L574" class="LineNr">574 </span><span class="muRecipe">def</span> move-cursor-to-column screen:&amp;:screen, column:num<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L574" class="LineNr">574 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L574'>move-cursor-to-column</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, column:num<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L575" class="LineNr">575 </span>  <span class="Constant">local-scope</span>
 <span id="L576" class="LineNr">576 </span>  <span class="Constant">load-ingredients</span>
-<span id="L577" class="LineNr">577 </span>  row:num, _ <span class="Special">&lt;-</span> cursor-position screen
-<span id="L578" class="LineNr">578 </span>  move-cursor screen, row, column
+<span id="L577" class="LineNr">577 </span>  row:num, _ <span class="Special">&lt;-</span> <a href='081print.mu.html#L428'>cursor-position</a> <a href='081print.mu.html#L4'>screen</a>
+<span id="L578" class="LineNr">578 </span>  <a href='081print.mu.html#L442'>move-cursor</a> <a href='081print.mu.html#L4'>screen</a>, row, column
 <span id="L579" class="LineNr">579 </span>]
 <span id="L580" class="LineNr">580 </span>
-<span id="L581" class="LineNr">581 </span><span class="muRecipe">def</span> screen-width screen:&amp;:screen<span class="muRecipe"> -&gt; </span>width:num [
+<span id="L581" class="LineNr">581 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L581'>screen-width</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span>width:num [
 <span id="L582" class="LineNr">582 </span>  <span class="Constant">local-scope</span>
 <span id="L583" class="LineNr">583 </span>  <span class="Constant">load-ingredients</span>
 <span id="L584" class="LineNr">584 </span>  <span class="Delimiter">{</span>
-<span id="L585" class="LineNr">585 </span>    <span class="muControl">break-unless</span> screen
+<span id="L585" class="LineNr">585 </span>    <span class="muControl">break-unless</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L586" class="LineNr">586 </span>    <span class="Comment"># fake screen</span>
 <span id="L587" class="LineNr">587 </span>    width <span class="Special">&lt;-</span> get *screen, <span class="Constant">num-columns:offset</span>
 <span id="L588" class="LineNr">588 </span>    <span class="muControl">return</span>
@@ -650,11 +650,11 @@ if ('onhashchange' in window) {
 <span id="L591" class="LineNr">591 </span>  width <span class="Special">&lt;-</span> display-width
 <span id="L592" class="LineNr">592 </span>]
 <span id="L593" class="LineNr">593 </span>
-<span id="L594" class="LineNr">594 </span><span class="muRecipe">def</span> screen-height screen:&amp;:screen<span class="muRecipe"> -&gt; </span>height:num [
+<span id="L594" class="LineNr">594 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L594'>screen-height</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span>height:num [
 <span id="L595" class="LineNr">595 </span>  <span class="Constant">local-scope</span>
 <span id="L596" class="LineNr">596 </span>  <span class="Constant">load-ingredients</span>
 <span id="L597" class="LineNr">597 </span>  <span class="Delimiter">{</span>
-<span id="L598" class="LineNr">598 </span>    <span class="muControl">break-unless</span> screen
+<span id="L598" class="LineNr">598 </span>    <span class="muControl">break-unless</span> <a href='081print.mu.html#L4'>screen</a>
 <span id="L599" class="LineNr">599 </span>    <span class="Comment"># fake screen</span>
 <span id="L600" class="LineNr">600 </span>    height <span class="Special">&lt;-</span> get *screen, <span class="Constant">num-rows:offset</span>
 <span id="L601" class="LineNr">601 </span>    <span class="muControl">return</span>
@@ -663,39 +663,39 @@ if ('onhashchange' in window) {
 <span id="L604" class="LineNr">604 </span>  height <span class="Special">&lt;-</span> display-height
 <span id="L605" class="LineNr">605 </span>]
 <span id="L606" class="LineNr">606 </span>
-<span id="L607" class="LineNr">607 </span><span class="muRecipe">def</span> hide-cursor screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L607" class="LineNr">607 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L607'>hide-cursor</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L608" class="LineNr">608 </span>  <span class="Constant">local-scope</span>
 <span id="L609" class="LineNr">609 </span>  <span class="Constant">load-ingredients</span>
-<span id="L610" class="LineNr">610 </span>  <span class="muControl">return-if</span> screen  <span class="Comment"># fake screen; do nothing</span>
+<span id="L610" class="LineNr">610 </span>  <span class="muControl">return-if</span> <a href='081print.mu.html#L4'>screen</a>  <span class="Comment"># fake screen; do nothing</span>
 <span id="L611" class="LineNr">611 </span>  <span class="Comment"># real screen</span>
 <span id="L612" class="LineNr">612 </span>  hide-cursor-on-display
 <span id="L613" class="LineNr">613 </span>]
 <span id="L614" class="LineNr">614 </span>
-<span id="L615" class="LineNr">615 </span><span class="muRecipe">def</span> show-cursor screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L615" class="LineNr">615 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L615'>show-cursor</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L616" class="LineNr">616 </span>  <span class="Constant">local-scope</span>
 <span id="L617" class="LineNr">617 </span>  <span class="Constant">load-ingredients</span>
-<span id="L618" class="LineNr">618 </span>  <span class="muControl">return-if</span> screen  <span class="Comment"># fake screen; do nothing</span>
+<span id="L618" class="LineNr">618 </span>  <span class="muControl">return-if</span> <a href='081print.mu.html#L4'>screen</a>  <span class="Comment"># fake screen; do nothing</span>
 <span id="L619" class="LineNr">619 </span>  <span class="Comment"># real screen</span>
 <span id="L620" class="LineNr">620 </span>  show-cursor-on-display
 <span id="L621" class="LineNr">621 </span>]
 <span id="L622" class="LineNr">622 </span>
-<span id="L623" class="LineNr">623 </span><span class="muRecipe">def</span> hide-screen screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L623" class="LineNr">623 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L623'>hide-screen</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L624" class="LineNr">624 </span>  <span class="Constant">local-scope</span>
 <span id="L625" class="LineNr">625 </span>  <span class="Constant">load-ingredients</span>
-<span id="L626" class="LineNr">626 </span>  <span class="muControl">return-if</span> screen  <span class="Comment"># fake screen; do nothing</span>
+<span id="L626" class="LineNr">626 </span>  <span class="muControl">return-if</span> <a href='081print.mu.html#L4'>screen</a>  <span class="Comment"># fake screen; do nothing</span>
 <span id="L627" class="LineNr">627 </span>  <span class="Comment"># real screen</span>
 <span id="L628" class="LineNr">628 </span>  hide-display
 <span id="L629" class="LineNr">629 </span>]
 <span id="L630" class="LineNr">630 </span>
-<span id="L631" class="LineNr">631 </span><span class="muRecipe">def</span> show-screen screen:&amp;:screen<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L631" class="LineNr">631 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L631'>show-screen</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a><span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L632" class="LineNr">632 </span>  <span class="Constant">local-scope</span>
 <span id="L633" class="LineNr">633 </span>  <span class="Constant">load-ingredients</span>
-<span id="L634" class="LineNr">634 </span>  <span class="muControl">return-if</span> screen  <span class="Comment"># fake screen; do nothing</span>
+<span id="L634" class="LineNr">634 </span>  <span class="muControl">return-if</span> <a href='081print.mu.html#L4'>screen</a>  <span class="Comment"># fake screen; do nothing</span>
 <span id="L635" class="LineNr">635 </span>  <span class="Comment"># real screen</span>
 <span id="L636" class="LineNr">636 </span>  show-display
 <span id="L637" class="LineNr">637 </span>]
 <span id="L638" class="LineNr">638 </span>
-<span id="L639" class="LineNr">639 </span><span class="muRecipe">def</span> print screen:&amp;:screen, s:text<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L639" class="LineNr">639 </span><span class="muRecipe">def</span> print <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, s:text<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L640" class="LineNr">640 </span>  <span class="Constant">local-scope</span>
 <span id="L641" class="LineNr">641 </span>  <span class="Constant">load-ingredients</span>
 <span id="L642" class="LineNr">642 </span>  color:num, color-found?:bool <span class="Special">&lt;-</span> <span class="Constant">next-ingredient</span>
@@ -716,7 +716,7 @@ if ('onhashchange' in window) {
 <span id="L657" class="LineNr">657 </span>    done?:bool <span class="Special">&lt;-</span> greater-or-equal i, len
 <span id="L658" class="LineNr">658 </span>    <span class="muControl">break-if</span> done?
 <span id="L659" class="LineNr">659 </span>    c:char <span class="Special">&lt;-</span> index *s, i
-<span id="L660" class="LineNr">660 </span>    print screen, c, color, bg-color
+<span id="L660" class="LineNr">660 </span>    print <a href='081print.mu.html#L4'>screen</a>, c, color, bg-color
 <span id="L661" class="LineNr">661 </span>    i <span class="Special">&lt;-</span> add i,<span class="Constant"> 1</span>
 <span id="L662" class="LineNr">662 </span>    <span class="muControl">loop</span>
 <span id="L663" class="LineNr">663 </span>  <span class="Delimiter">}</span>
@@ -724,11 +724,11 @@ if ('onhashchange' in window) {
 <span id="L665" class="LineNr">665 </span>
 <span id="L666" class="LineNr">666 </span><span class="muScenario">scenario</span> print-text-stops-at-right-margin [
 <span id="L667" class="LineNr">667 </span>  <span class="Constant">local-scope</span>
-<span id="L668" class="LineNr">668 </span>  fake-screen:&amp;:screen <span class="Special">&lt;-</span> new-fake-screen <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
+<span id="L668" class="LineNr">668 </span>  fake-screen:&amp;:<a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L17'>new-fake-screen</a> <span class="Constant">3/width</span>, <span class="Constant">2/height</span>
 <span id="L669" class="LineNr">669 </span>  run [
 <span id="L670" class="LineNr">670 </span>    fake-screen <span class="Special">&lt;-</span> print fake-screen, <span class="Constant">[abcd]</span>
-<span id="L671" class="LineNr">671 </span>    cell:&amp;:@:screen-cell <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
-<span id="L672" class="LineNr">672 </span>    10:@:screen-cell/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
+<span id="L671" class="LineNr">671 </span>    cell:&amp;:@:<a href='081print.mu.html#L12'>screen-cell</a> <span class="Special">&lt;-</span> get *fake-screen, <span class="Constant">data:offset</span>
+<span id="L672" class="LineNr">672 </span>    10:@:<a href='081print.mu.html#L12'>screen-cell</a>/<span class="Special">raw</span> <span class="Special">&lt;-</span> copy *cell
 <span id="L673" class="LineNr">673 </span>  ]
 <span id="L674" class="LineNr">674 </span>  memory-should-contain [
 <span id="L675" class="LineNr">675 </span>   <span class="Constant"> 10</span> <span class="Special">&lt;-</span><span class="Constant"> 6</span>  <span class="Comment"># width*height</span>
@@ -743,7 +743,7 @@ if ('onhashchange' in window) {
 <span id="L684" class="LineNr">684 </span>  ]
 <span id="L685" class="LineNr">685 </span>]
 <span id="L686" class="LineNr">686 </span>
-<span id="L687" class="LineNr">687 </span><span class="muRecipe">def</span> print-integer screen:&amp;:screen, n:num<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L687" class="LineNr">687 </span><span class="muRecipe">def</span> <a href='081print.mu.html#L687'>print-integer</a> <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, n:num<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L688" class="LineNr">688 </span>  <span class="Constant">local-scope</span>
 <span id="L689" class="LineNr">689 </span>  <span class="Constant">load-ingredients</span>
 <span id="L690" class="LineNr">690 </span>  color:num, color-found?:bool <span class="Special">&lt;-</span> <span class="Constant">next-ingredient</span>
@@ -760,11 +760,11 @@ if ('onhashchange' in window) {
 <span id="L701" class="LineNr">701 </span>  <span class="Delimiter">}</span>
 <span id="L702" class="LineNr">702 </span>  <span class="Comment"># todo: other bases besides decimal</span>
 <span id="L703" class="LineNr">703 </span>  s:text <span class="Special">&lt;-</span> to-text n
-<span id="L704" class="LineNr">704 </span>  screen <span class="Special">&lt;-</span> print screen, s, color, bg-color
+<span id="L704" class="LineNr">704 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> print <a href='081print.mu.html#L4'>screen</a>, s, color, bg-color
 <span id="L705" class="LineNr">705 </span>]
 <span id="L706" class="LineNr">706 </span>
 <span id="L707" class="LineNr">707 </span><span class="Comment"># for now, we can only print integers</span>
-<span id="L708" class="LineNr">708 </span><span class="muRecipe">def</span> print screen:&amp;:screen, n:num<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L708" class="LineNr">708 </span><span class="muRecipe">def</span> print <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, n:num<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L709" class="LineNr">709 </span>  <span class="Constant">local-scope</span>
 <span id="L710" class="LineNr">710 </span>  <span class="Constant">load-ingredients</span>
 <span id="L711" class="LineNr">711 </span>  color:num, color-found?:bool <span class="Special">&lt;-</span> <span class="Constant">next-ingredient</span>
@@ -779,11 +779,11 @@ if ('onhashchange' in window) {
 <span id="L720" class="LineNr">720 </span>    <span class="muControl">break-if</span> bg-color-found?
 <span id="L721" class="LineNr">721 </span>    bg-color <span class="Special">&lt;-</span> copy <span class="Constant">0/black</span>
 <span id="L722" class="LineNr">722 </span>  <span class="Delimiter">}</span>
-<span id="L723" class="LineNr">723 </span>  screen <span class="Special">&lt;-</span> print-integer screen, n, color, bg-color
+<span id="L723" class="LineNr">723 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L687'>print-integer</a> <a href='081print.mu.html#L4'>screen</a>, n, color, bg-color
 <span id="L724" class="LineNr">724 </span>]
 <span id="L725" class="LineNr">725 </span>
 <span id="L726" class="LineNr">726 </span><span class="Comment"># addresses</span>
-<span id="L727" class="LineNr">727 </span><span class="muRecipe">def</span> print screen:&amp;:screen, n:&amp;:_elem<span class="muRecipe"> -&gt; </span>screen:&amp;:screen [
+<span id="L727" class="LineNr">727 </span><span class="muRecipe">def</span> print <a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a>, n:&amp;:_elem<span class="muRecipe"> -&gt; </span><a href='081print.mu.html#L4'>screen</a>:&amp;:<a href='081print.mu.html#L4'>screen</a> [
 <span id="L728" class="LineNr">728 </span>  <span class="Constant">local-scope</span>
 <span id="L729" class="LineNr">729 </span>  <span class="Constant">load-ingredients</span>
 <span id="L730" class="LineNr">730 </span>  color:num, color-found?:bool <span class="Special">&lt;-</span> <span class="Constant">next-ingredient</span>
@@ -799,7 +799,7 @@ if ('onhashchange' in window) {
 <span id="L740" class="LineNr">740 </span>    bg-color <span class="Special">&lt;-</span> copy <span class="Constant">0/black</span>
 <span id="L741" class="LineNr">741 </span>  <span class="Delimiter">}</span>
 <span id="L742" class="LineNr">742 </span>  n2:num <span class="Special">&lt;-</span> copy n
-<span id="L743" class="LineNr">743 </span>  screen <span class="Special">&lt;-</span> print-integer screen, n2, color, bg-color
+<span id="L743" class="LineNr">743 </span>  <a href='081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='081print.mu.html#L687'>print-integer</a> <a href='081print.mu.html#L4'>screen</a>, n2, color, bg-color
 <span id="L744" class="LineNr">744 </span>]
 </pre>
 </body>