diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-08-17 19:04:35 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-08-17 19:04:35 -0700 |
commit | d990e8f07aee36f68bcd270889d20c2d22b9aa0b (patch) | |
tree | 07a624ea81f2974e1bb038462f4d0607237ea431 /html/filesystem.mu.html | |
parent | cb159b8c8a888f089676a63273b76b641e860d88 (diff) | |
download | mu-d990e8f07aee36f68bcd270889d20c2d22b9aa0b.tar.gz |
3219
Trying keeping html in the master branch: https://github.com/blog/2228-simpler-github-pages-publishing Let's see if https://akkartik.github.io/mu updates after I push this commit to just the master branch.
Diffstat (limited to 'html/filesystem.mu.html')
-rw-r--r-- | html/filesystem.mu.html | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/html/filesystem.mu.html b/html/filesystem.mu.html new file mode 100644 index 00000000..17cecb3a --- /dev/null +++ b/html/filesystem.mu.html @@ -0,0 +1,52 @@ +<!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 - filesystem.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="use_css,pre_wrap,no_foldcolumn,expand_tabs,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; } +* { font-size: 12pt; font-size: 1em; } +.muRecipe { color: #ff8700; } +.Delimiter { color: #800080; } +.Comment { color: #9090ff; } +.Constant { color: #00a0a0; } +.Special { color: #c00000; } +.muControl { color: #c0a020; } +--> +</style> + +<script type='text/javascript'> +<!-- + +--> +</script> +</head> +<body> +<pre id='vimCodeElement'> +<span class="muRecipe">def</span> main [ + <span class="Constant">local-scope</span> + $print <span class="Constant">[file to read from: ]</span>, <span class="Constant">[/tmp/mu-fs]</span> + <span class="Comment"># initialize filesystem</span> + fs:address:filesystem<span class="Special"> <- </span>copy <span class="Constant">0/real-filesystem</span> + content-source:address:source:character<span class="Special"> <- </span>start-reading fs, <span class="Constant">[/tmp/mu-fs]</span> + <span class="Comment"># read from channel until exhausted and print out characters</span> + <span class="Delimiter">{</span> + c:character, done?:boolean, content-source<span class="Special"> <- </span>read content-source + <span class="muControl">break-if</span> done? + $print <span class="Constant">[Next: ]</span>, c, <span class="Constant">10/newline</span> + <span class="muControl">loop</span> + <span class="Delimiter">}</span> + $print <span class="Constant">[Done reading]</span>, <span class="Constant">10/newline</span> + <span class="Comment"># TODO: writing to file</span> +] +</pre> +</body> +</html> +<!-- vim: set foldmethod=manual : --> |