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 file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 main() { | 5 main() { |
6 print("Hello, World!"); | 6 print("Hello, World!"); |
7 z("Hello, World!"); | 7 z("Hello, World!"); |
8 z.print("Hello, World!"); | 8 z.print("Hello, World!"); |
9 y.z.print("Hello, World!"); | 9 y.z.print("Hello, World!"); |
10 x.y.z.print("Hello, World!"); | 10 x.y.z.print("Hello, World!"); |
11 | 11 |
12 1 + print("Hello, World!") + z("Hello, World!") + z.print("Hello, World!") | 12 1 + print("Hello, World!") + z("Hello, World!") + z.print("Hello, World!") |
13 + y.z.print("Hello, World!") + x.y.z.print("Hello, World!"); | 13 + y.z.print("Hello, World!") + x.y.z.print("Hello, World!"); |
14 } | 14 } |
OLD | NEW |