// Dart语言声明布尔变量
void main() { 
   bool test; 
   test=12 > 5; 
   print(test); 
}