// Dart语言if语句
void main() { 
  var  num=5; 
  if (num>0) { 
      print("number is positive"); 
   }    
}