| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 void main() { | 5 void main() { |
| 6 /* | 6 /* |
| 7 var hello = 'Hello'; | 7 var hello = 'Hello'; |
| 8 var world = 'world'; | 8 var world = 'world'; |
| 9 var s = 0; | 9 var s = 0; |
| 10 s = world; | 10 s = world; |
| 11 print(hello + ", " + world + "!"); | 11 print(hello + ", " + world + "!"); |
| 12 */ | 12 */ |
| 13 } | 13 } |
| OLD | NEW |