Home | History | Annotate | Download | only in tutorial
      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
      3 // found in the LICENSE file.
      4 
      5 #include "tools/gn/tutorial/hello.h"
      6 
      7 int main() {
      8 #if defined(TWO_PEOPLE)
      9   Hello("Bill", "Ted");
     10 #else
     11   Hello("you guys");
     12 #endif
     13   return 0;
     14 }
     15