about summary refs log tree commit diff stats
path: root/html/http-client.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
commitb301e0c0e6b54dceecbe4ee1ef8f610411015c30 (patch)
treed40803d412718221d7c92fd50c189563877b8301 /html/http-client.mu.html
parent805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (diff)
downloadmu-b301e0c0e6b54dceecbe4ee1ef8f610411015c30.tar.gz
4200
Forgot to set up exuberant_ctags_rc as .ctags on new laptop.
Diffstat (limited to 'html/http-client.mu.html')
-rw-r--r--html/http-client.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/http-client.mu.html b/html/http-client.mu.html
index dab4ce3d..a9de0103 100644
--- a/html/http-client.mu.html
+++ b/html/http-client.mu.html
@@ -59,13 +59,13 @@ if ('onhashchange' in window) {
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr"> 1 </span><span class="Comment"># example program: reading a URL over HTTP</span>
 <span id="L2" class="LineNr"> 2 </span>
-<span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> main [
+<span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> <a href='http-client.mu.html#L3'>main</a> [
 <span id="L4" class="LineNr"> 4 </span>  <span class="Constant">local-scope</span>
 <span id="L5" class="LineNr"> 5 </span>  $print <span class="Constant">[aaa]</span> <span class="Constant">10/newline</span>
-<span id="L6" class="LineNr"> 6 </span>  google:&amp;:source:char <span class="Special">&lt;-</span> start-reading-from-network <span class="Constant">0/real-resources</span>, <span class="Constant">[google.com/]</span>
+<span id="L6" class="LineNr"> 6 </span>  google:&amp;:<a href='075channel.mu.html#L43'>source</a>:char <span class="Special">&lt;-</span> <a href='092socket.mu.html#L69'>start-reading-from-network</a> <span class="Constant">0/real-resources</span>, <span class="Constant">[google.com/]</span>
 <span id="L7" class="LineNr"> 7 </span>  $print <span class="Constant">[bbb]</span> <span class="Constant">10/newline</span>
 <span id="L8" class="LineNr"> 8 </span>  n:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
-<span id="L9" class="LineNr"> 9 </span>  buf:&amp;:buffer:char <span class="Special">&lt;-</span> new-buffer<span class="Constant"> 30</span>
+<span id="L9" class="LineNr"> 9 </span>  buf:&amp;:<a href='061text.mu.html#L120'>buffer</a>:char <span class="Special">&lt;-</span> <a href='061text.mu.html#L125'>new-buffer</a><span class="Constant"> 30</span>
 <span id="L10" class="LineNr">10 </span>  <span class="Delimiter">{</span>
 <span id="L11" class="LineNr">11 </span>    c:char, done?:bool <span class="Special">&lt;-</span> read google
 <span id="L12" class="LineNr">12 </span>    <span class="muControl">break-if</span> done?
@@ -78,9 +78,9 @@ if ('onhashchange' in window) {
 <span id="L19" class="LineNr">19 </span>    <span class="Delimiter">}</span>
 <span id="L20" class="LineNr">20 </span>   <span class="muControl"> loop</span>
 <span id="L21" class="LineNr">21 </span>  <span class="Delimiter">}</span>
-<span id="L22" class="LineNr">22 </span>  result:text <span class="Special">&lt;-</span> buffer-to-array buf
+<span id="L22" class="LineNr">22 </span>  result:text <span class="Special">&lt;-</span> <a href='061text.mu.html#L338'>buffer-to-array</a> buf
 <span id="L23" class="LineNr">23 </span>  open-console
-<span id="L24" class="LineNr">24 </span>  clear-screen <span class="Constant">0/screen</span>  <span class="Comment"># non-scrolling app</span>
+<span id="L24" class="LineNr">24 </span>  <a href='081print.mu.html#L46'>clear-screen</a> <span class="Constant">0/screen</span>  <span class="Comment"># non-scrolling app</span>
 <span id="L25" class="LineNr">25 </span>  len:num <span class="Special">&lt;-</span> length *result
 <span id="L26" class="LineNr">26 </span>  print <span class="Constant">0/real-screen</span>, result
 <span id="L27" class="LineNr">27 </span>  wait-for-some-interaction