about summary refs log tree commit diff stats
path: root/console.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-06-10 14:36:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-06-10 15:41:42 -0700
commit909adb27f9df2ba58e703562e3cf8f948fc58b56 (patch)
treed85bf7767b9d38479e66de96a4fddebd27e98ef7 /console.mu
parentf0f077661c1f5d587602343a1a0bc82f0c99cf59 (diff)
downloadmu-909adb27f9df2ba58e703562e3cf8f948fc58b56.tar.gz
3905
Standardize exit paths. Most layers now don't need to know about termbox.

We can't really use `assert` in console-mode apps; it can't just exit because
we want to be able to check assertion failures in tests.
Diffstat (limited to 'console.mu')
-rw-r--r--console.mu1
1 files changed, 0 insertions, 1 deletions
diff --git a/console.mu b/console.mu
index 062ca3b0..cc81c232 100644
--- a/console.mu
+++ b/console.mu
@@ -5,7 +5,6 @@
 def main [
   local-scope
   open-console
-  clear-screen 0/screen  # non-scrolling app
   {
     e:event, found?:bool <- check-for-interaction
     break-if found?