fix other mandelbrot variants
[mu.git] / archive / 1.vm / console.mu
blobcc81c2323dbb557f1323ea7f363d78e453160a04
1 # example program: reading events from keyboard or mouse
3 # Keeps printing 'a' until you press a key or click on the mouse.
5 def main [
6   local-scope
7   open-console
8   {
9     e:event, found?:bool <- check-for-interaction
10     break-if found?
11     print-character-to-display 97, 7/white
12     loop
13   }
14   close-console
15   $print e, 10/newline