about summary refs log tree commit diff stats
path: root/filesystem.mu
diff options
context:
space:
mode:
Diffstat (limited to 'filesystem.mu')
-rw-r--r--filesystem.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/filesystem.mu b/filesystem.mu
index 7aa919e6..274397be 100644
--- a/filesystem.mu
+++ b/filesystem.mu
@@ -1,6 +1,6 @@
 def main [
   local-scope
-  $print [file to read from: ], [/tmp/mu-fs]
+  $print [reading characters from /tmp/mu-fs], 10/newline
   # initialize filesystem
   fs:address:filesystem <- copy 0/real-filesystem
   content-source:address:source:character <- start-reading fs, [/tmp/mu-fs]
@@ -8,9 +8,9 @@ def main [
   {
     c:character, done?:boolean, content-source <- read content-source
     break-if done?
-    $print [Next: ], c, 10/newline
+    $print [  ], c, 10/newline
     loop
   }
-  $print [Done reading], 10/newline
+  $print [done reading], 10/newline
   # TODO: writing to file
 ]