Dart_(7) Built-in types(2) <Collections>
2. Collections (1) List void main(){ var animals = ['rabbit', 'dog', 'cat', 'wolf']; List age = [5, 2, 4, 12]; animals.add('rat'); } 가급적 var 로 선언한다. (하지만 class를 다룰 때에는 type을 명시하는 것이 좋은 방법이다.) (2) Set Set 은 python의 Set과 거의 비슷하다. void main(){ Set price = {5000, 2000, 1000, 1000, 1000, 1000,}; price.add(2000); price.add(2000); price.add(2000); price.add(2000); print(price); // {5000, 2000, 1000} } ..