void test( String s, bool b ){ String ss = s; if( ss.isNotEmpty ) ss += " "; ss += b ? "OK" : "NG"; debugPrint( ss ); }