*** empty log message ***
[chuck-blob.git] / v2 / test / art01.ck
blob1a8ea3eb87dde69f17f37bea61a813616cc23e78
1 MidiIn min;
2 MidiMsg msg;
4 if( !min.open( 0 ) )
5     <<<"bad">>>;
7 while( true)
9     min => now;
10     while( min.recv( msg ) )
11     {
12         <<<msg.data1,msg.data2,msg.data3>>>;
13         <<<"-----------">>>;
14     }