hello.c 342 B

12345678910111213
  1. /* vim: tabstop=4 shiftwidth=4 noexpandtab
  2. * This file is part of ToaruOS and is released under the terms
  3. * of the NCSA / University of Illinois License - see LICENSE.md
  4. * Copyright (C) 2011~2018 K. Lange
  5. *
  6. * hello - Prints "Hello, world."
  7. */
  8. #include <stdio.h>
  9. int main(int argc, char * argv[]) {
  10. puts("Hello, world.");
  11. return 0;
  12. }