Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 void main() { | |
| 6 // print(foo(3) + foo(4)); | |
|
kasperl
2011/11/08 12:32:49
Looking forward to getting this into frog/tests/le
ahe
2011/11/08 12:40:31
+1
ngeoffray
2011/11/08 12:45:02
Rebase and you should have it there :)
ahe
2011/11/08 12:48:04
Ooh. You speak git now ;-)
| |
| 7 } | |
| 8 | |
| 9 void foo(int a) { | |
|
kasperl
2011/11/08 12:32:49
int foo(int a)?
ahe
2011/11/08 12:40:31
Done.
| |
| 10 return a; | |
| 11 } | |
| OLD | NEW |