test method

void test(
  1. String s,
  2. bool b
)

Implementation

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