// Dart语言List.addAll()方法
void main() { 
   List l = [1,2,3]; 
   l.addAll([12,13]); 
   print(l); 
}