toaruos/apps/hello.c

15 lines
324 B
C
Raw Normal View History

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