hello.c 247 B

12345678910111213
  1. /*
  2. * Copyright (c) 2012 Google Inc. All rights reserved.
  3. * Use of this source code is governed by a BSD-style license that can be
  4. * found in the LICENSE file.
  5. */
  6. #include <stdio.h>
  7. int main(void)
  8. {
  9. printf("Hello, world!\n");
  10. return 0;
  11. }