about summary refs log tree commit diff stats
path: root/display.mu
diff options
context:
space:
mode:
Diffstat (limited to 'display.mu')
-rw-r--r--display.mu5
1 files changed, 3 insertions, 2 deletions
diff --git a/display.mu b/display.mu
index 821f4bd5..e2397382 100644
--- a/display.mu
+++ b/display.mu
@@ -1,7 +1,7 @@
 # example program: managing the display
 
 recipe main [
-  switch-to-display
+  open-console
   print-character-to-display 97:literal, 1:literal/red
   1:number/raw, 2:number/raw <- cursor-position-on-display
   wait-for-some-interaction
@@ -20,5 +20,6 @@ recipe main [
   wait-for-some-interaction
   move-cursor-up-on-display
   wait-for-some-interaction
-  return-to-console
+#?   $print [aaa] #? 1
+  close-console
 ]