toaruos/apps/hello.c

14 lines
342 B
C
Raw Normal View History

2018-08-14 11:13:38 +03:00
/* vim: tabstop=4 shiftwidth=4 noexpandtab
* This file is part of ToaruOS and is released under the terms
* of the NCSA / University of Illinois License - see LICENSE.md
* Copyright (C) 2011~2018 K. Lange
*
* hello - Prints "Hello, world."
*/
2018-02-25 13:07:56 +03:00
#include <stdio.h>
2018-02-25 08:13:54 +03:00
int main(int argc, char * argv[]) {
2018-02-25 13:07:56 +03:00
puts("Hello, world.");
2018-02-25 08:13:54 +03:00
return 0;
}