about summary refs log tree commit diff stats
path: root/html/052tangle.cc.html
Commit message (Expand)AuthorAgeFilesLines
* 3117Kartik K. Agaram2016-07-201-1/+0
* 3013Kartik K. Agaram2016-05-261-4/+8
* 2996Kartik K. Agaram2016-05-211-2/+33
* 2875Kartik K. Agaram2016-04-271-7/+8
* 2812Kartik K. Agaram2016-03-271-15/+24
* 2745Kartik K. Agaram2016-03-091-1/+1
* 2744Kartik K. Agaram2016-03-091-3/+3
* 2743Kartik K. Agaram2016-03-091-69/+61
* 2706 - update htmlKartik K. Agaram2016-02-251-5/+5
* 2625Kartik K. Agaram2016-02-021-1/+1
* 2605Kartik K. Agaram2016-01-261-7/+1
* 2611Kartik K. Agaram2015-11-291-1/+1
* 2423 - describe shape-shifting in html docsKartik K. Agaram2015-11-101-25/+27
* 2175Kartik K. Agaram2015-09-061-49/+176
* 2062Kartik K. Agaram2015-08-231-23/+22
* 1949Kartik K. Agaram2015-08-061-33/+130
* 1885Kartik K. Agaram2015-07-291-0/+235
t: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Mu - screen.mu</title>
<meta name="Generator" content="Vim/7.4">
<meta name="plugin-version" content="vim7.4_v2">
<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">
<style type="text/css">
<!--
pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color: #080808; }
a { text-decoration: none; }
a:hover { text-decoration: underline; }
* { font-size: 12pt; font-size: 1em; }
.Special { color: #c00000; }
.Comment { color: #9090ff; }
.Constant { color: #00a0a0; }
.LineNr { color: #444444; }
.muRecipe { color: #ff8700; }
-->
</style>

<script type='text/javascript'>
<!--

/* function to open any folds containing a jumped-to line before jumping to it */
function JumpToLine()
{
  var lineNum;
  lineNum = window.location.hash;
  lineNum = lineNum.substr(1); /* strip off '#' */

  if (lineNum.indexOf('L') == -1) {
    lineNum = 'L'+lineNum;
  }
  lineElem = document.getElementById(lineNum);
  /* Always jump to new location even if the line was hidden inside a fold, or
   * we corrected the raw number to a line ID.
   */
  if (lineElem) {
    lineElem.scrollIntoView(true);
  }
  return true;
}
if ('onhashchange' in window) {
  window.onhashchange = JumpToLine;
}

-->
</script>
</head>
<body onload='JumpToLine();'>
<pre id='vimCodeElement'>
<span id="L1" class="LineNr"> 1 </span><span class="Comment"># example program: managing the display using 'screen' objects</span>
<span id="L2" class="LineNr"> 2 </span>
<span id="L3" class="LineNr"> 3 </span><span class="Comment"># The zero screen below means 'use the real screen'. Tests can also use fake</span>
<span id="L4" class="LineNr"> 4 </span><span class="Comment"># screens.</span>
<span id="L5" class="LineNr"> 5 </span><span class="muRecipe">def</span> <a href='screen.mu.html#L5'>main</a> [
<span id="L6" class="LineNr"> 6 </span>  open-console
<span id="L7" class="LineNr"> 7 </span>  10:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
<span id="L8" class="LineNr"> 8 </span>  print <span class="Constant">0/screen</span>, 10:char/a, <span class="Constant">2/red</span>
<span id="L9" class="LineNr"> 9 </span>  1:num/<span class="Special">raw</span>, 2:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> <a href='081print.mu.html#L428'>cursor-position</a> <span class="Constant">0/screen</span>
<span id="L10" class="LineNr">10 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
<span id="L11" class="LineNr">11 </span>  <a href='081print.mu.html#L27'>clear-screen</a> <span class="Constant">0/screen</span>
<span id="L12" class="LineNr">12 </span>  <a href='081print.mu.html#L442'>move-cursor</a> <span class="Constant">0/screen</span>, <span class="Constant">0/row</span>, <span class="Constant">4/column</span>
<span id="L13" class="LineNr">13 </span>  10:char <span class="Special">&lt;-</span> copy <span class="Constant">98/b</span>
<span id="L14" class="LineNr">14 </span>  print <span class="Constant">0/screen</span>, 10:char
<span id="L15" class="LineNr">15 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
<span id="L16" class="LineNr">16 </span>  <a href='081print.mu.html#L442'>move-cursor</a> <span class="Constant">0/screen</span>, <span class="Constant">0/row</span>, <span class="Constant">0/column</span>
<span id="L17" class="LineNr">17 </span>  <a href='081print.mu.html#L381'>clear-line</a> <span class="Constant">0/screen</span>
<span id="L18" class="LineNr">18 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
<span id="L19" class="LineNr">19 </span>  <a href='081print.mu.html#L487'>cursor-down</a> <span class="Constant">0/screen</span>
<span id="L20" class="LineNr">20 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
<span id="L21" class="LineNr">21 </span>  <a href='081print.mu.html#L523'>cursor-right</a> <span class="Constant">0/screen</span>
<span id="L22" class="LineNr">22 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
<span id="L23" class="LineNr">23 </span>  <a href='081print.mu.html#L542'>cursor-left</a> <span class="Constant">0/screen</span>
<span id="L24" class="LineNr">24 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
<span id="L25" class="LineNr">25 </span>  <a href='081print.mu.html#L506'>cursor-up</a> <span class="Constant">0/screen</span>
<span id="L26" class="LineNr">26 </span>  <a href='084console.mu.html#L88'>wait-for-event</a> <span class="Constant">0/console</span>
<span id="L27" class="LineNr">27 </span>  close-console
<span id="L28" class="LineNr">28 </span>]
</pre>
</body>
</html>
<!-- vim: set foldmethod=manual : -->