*** empty log message ***
[chuck-blob.git] / v2 / examples / event / kb.ck
blob9d585a0e5f117912b5ce474d6c78540940cf39a9
1 // the event
2 KBHit kb;
4 // time-loop
5 while( true )
7     // wait on kbhit event
8     kb => now;
10     // potentially more than 1 key at a time
11     while( kb.more() )
12     {
13         // print key value
14         <<< "ascii: ", kb.getchar() >>>;
15     }