https://github.com/akkartik/mu/blob/master/apps/tui.mu
 1 # Test some primitives for text-mode.
 2 #
 3 # To run:
 4 #   $ ./translate_mu apps/tui.mu
 5 #   $ ./a.elf
 6 
 7 fn main -> exit-status/ebx: int {
 8   var nrows/eax: int <- copy 0
 9   var ncols/ecx: int <- copy 0
10   nrows, ncols <- screen-size 0
11   enable-screen-grid-mode
12   move-cursor 0, 5, 0x22
13   start-color 0, 1, 0x7a
14   start-blinking 0
15   print-string 0, "Hello world!"
16   reset-formatting 0
17   move-cursor 0, 6, 0x22
18   print-string 0, "tty dimensions: "
19   print-int32-hex 0, nrows
20   print-string 0, " rows, "
21   print-int32-hex 0, ncols
22   print-string 0, " rows\n"
23 
24   print-string 0, "press a key to see its code: "
25   enable-keyboard-immediate-mode
26   var x/eax: grapheme <- read-key-from-real-keyboard
27   enable-keyboard-type-mode
28   enable-screen-type-mode
29   print-string 0, "You pressed "
30   var x-int/eax: int <- copy x
31   print-int32-hex 0, x-int
32   print-string 0, "\n"
33   exit-status <- copy 0
34 }