about summary refs log tree commit diff stats
path: root/edit.mu
diff options
context:
space:
mode:
Diffstat (limited to 'edit.mu')
-rw-r--r--edit.mu17
1 files changed, 0 insertions, 17 deletions
diff --git a/edit.mu b/edit.mu
index 05ada379..56aee23d 100644
--- a/edit.mu
+++ b/edit.mu
@@ -1,20 +1,3 @@
-(main
-  (cls)
-  (cursor (10 literal) (5 literal))
-  (print ("Hello, " literal))
-  (bold-mode)
-  (print ("you" literal))
-  (non-bold-mode)
-  (print ("." literal))
-  (cursor (1 literal) (1 literal))
-  (print ("Press a key..." literal))
-  ((key string) <- getc)
-  (console-off)
-  (print ("You pressed: " literal))
-  (print (key string))
-  (print ("\n" literal))
-)
-
 ; a screen is an array of pointers to lines, in turn arrays of characters
 
 (new-screen