From db7117a9dd9a6e57e8632ea5848e1101eee0fbde Mon Sep 17 00:00:00 2001 From: Bryan O'Sullivan Date: Fri, 26 Aug 2005 01:20:50 -0700 Subject: [PATCH] Create a standard "hello, world" program --- hello.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..ed55ec0 --- /dev/null +++ b/hello.c @@ -0,0 +1,16 @@ +/* + * hello.c + * + * Placed in the public domain by Bryan O'Sullivan + * + * This program is not covered by patents in the United States or other + * countries. + */ + +#include + +int main(int argc, char **argv) +{ + printf("hello, world!\n"); + return 0; +} -- 2.43.0