toaruos/apps/hello.c

15 lines
324 B
C
Raw Normal View History

/**
* @brief hello - Prints "Hello, world."
*
* @copyright
2018-08-14 17:13:38 +09:00
* 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
*/
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;
}