main.c 328 B

1234567891011121314
  1. /* Copyright (C) 2006-2017 Free Software Foundation, Inc.
  2. This program is free software; the Free Software Foundation
  3. gives unlimited permission to copy, distribute and modify it. */
  4. #include <config.h>
  5. #include <stdio.h>
  6. int
  7. main (void)
  8. {
  9. puts ("Hello World!");
  10. puts ("This is " PACKAGE_STRING ".");
  11. return 0;
  12. }