OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 main() { | 5 main() { |
6 int c = new DateTime.now().millisecondsSinceEpoch; | 6 int c = new DateTime.now().millisecondsSinceEpoch; |
7 for (int i = 0; i < 100; i++) { | 7 for (int i = 0; i < 100; i++) { |
8 print(i++); | 8 print(i++); |
9 } | 9 } |
10 for (int i = 0; i < 100; c < 42 ? throw "fisk" : i++) { | 10 for (int i = 0; i < 100; c < 42 ? throw "fisk" : i++) { |
11 print(i++); | 11 print(i++); |
12 } | 12 } |
13 } | 13 } |
OLD | NEW |