about summary refs log tree commit diff stats
path: root/edit.mu
blob: 5d2e3fa8a4718e6fc242f6473efe858ef1257a9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(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)
  (cll)
  (print ("You pressed: " literal))
  (print (key string))
  (print ("\n" literal))
)