about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-24 00:37:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-24 00:37:01 -0700
commit4e6d01d6aa5f8facc82a5c6ffcdbea32cb363c10 (patch)
treecbf422f1db63ff226faadcd74cff3a52c29094e5 /cpp
parent8c9e97ae0183e79accbcb1afc57499f83c0b5406 (diff)
downloadmu-4e6d01d6aa5f8facc82a5c6ffcdbea32cb363c10.tar.gz
1156
Diffstat (limited to 'cpp')
-rw-r--r--cpp/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/makefile b/cpp/makefile
index 98982f08..aa72de17 100644
--- a/cpp/makefile
+++ b/cpp/makefile
@@ -23,7 +23,7 @@ test: mu
 	./mu test
 
 valgrind: mu
-	valgrind --leak-check=yes ./mu test
+	valgrind -q --leak-check=yes ./mu test
 
 # auto-generated files; by convention they end in '_list'.
 autogenerated_lists: mu.cc function_list test_list
tik/mu/blame/console.mu?h=main&id=7dcdd40c2749f5aff5ea9553acdba9e1218e90d1'>^
6a0f71b9 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15




                                                                 
              
   
                                                    
                   
                                          

        
               
                      
 
# example program: reading events from keyboard or mouse
#
# Keeps printing 'a' until you press a key or click on the mouse.

recipe main [
  open-console
  {
    e:event, found?:boolean <- check-for-interaction
    break-if found?
    print-character-to-display 97, 7/white
    loop
  }
  close-console
  $print e, 10/newline
]