// Dart语言toString()方法
void main() { 
   int n = 12; 
   var res = n.toString(); 
   print("New String: ${res}");
}