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