Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "tools/gn/tutorial/hello.h" | 5 #include "tools/gn/tutorial/hello.h" |
| 6 | 6 |
| 7 int main() { | 7 int main() { |
| 8 #if defined(TWO_PEOPLE) | 8 #if defined(TWO_PEOPLE) |
| 9 Hello("Bill", "Ted"); | 9 Hello("Bill", "Joy"); |
|
Nico
2015/07/30 22:42:51
lgtm++
| |
| 10 #else | 10 #else |
| 11 Hello("you guys"); | 11 Hello("everyone"); |
| 12 #endif | 12 #endif |
| 13 return 0; | 13 return 0; |
| 14 } | 14 } |
| OLD | NEW |