about summary refs log tree commit diff stats
path: root/apps/parse-int.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-08-01 23:06:41 -0700
committerKartik Agaram <vc@akkartik.com>2020-08-01 23:39:57 -0700
commit6b343a82f29b6dea219504504244591c3042df43 (patch)
tree91c63bd3d66d73aeb4e6714f1b6e5792620839b8 /apps/parse-int.mu
parent59a2e363f5f818e3870a275efe375737a76009fa (diff)
downloadmu-6b343a82f29b6dea219504504244591c3042df43.tar.gz
6699 - start building out fake screen
We now have all existing apps and prototypes going through the dependency-injected
wrapper, even though it doesn't actually implement the fake screen yet.
Diffstat (limited to 'apps/parse-int.mu')
-rw-r--r--apps/parse-int.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/parse-int.mu b/apps/parse-int.mu
index d8ae87e0..8ad6074f 100644
--- a/apps/parse-int.mu
+++ b/apps/parse-int.mu
@@ -14,7 +14,7 @@ $main-body: {
   compare n, 1
   {
     break-if->
-    print-string-to-screen "usage: parse-int <integer>\n"
+    print-string 0, "usage: parse-int <integer>\n"
     exit-status <- copy 1
     break $main-body
   }