blob: 6f277d13acd210c301e283328e1d4cd5ce003d52 [file] [log] [blame]
Carl Shapiro6b6b5f02011-06-21 15:05:09 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Carl Shapiro7b216702011-06-17 15:09:26 -07003#include <iostream>
4
5int main(int argc, char** argv) {
6 std::cout << "hello, world" << std::endl;
7 return 0;
8}