2018-08-14 17:13:38 +09: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 19:07:56 +09:00
|
|
|
#include <stdio.h>
|
2018-02-25 14:13:54 +09:00
|
|
|
|
|
|
|
int main(int argc, char * argv[]) {
|
2018-02-25 19:07:56 +09:00
|
|
|
puts("Hello, world.");
|
2018-02-25 14:13:54 +09:00
|
|
|
return 0;
|
|
|
|
}
|