■ import 키워드에서 as 키워드를 사용해 별칭을 만드는 방법을 보여준다.
▶ 예제 코드 (DART)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import 'dart:collection'; import 'dart:math' as math; void main() { math.Random rand = math.Random(); HashSet<int> hashSet = HashSet(); while (hashSet.length < 6) { hashSet.add(rand.nextInt(45)); } print(hashSet); } |