From 2f77bc1b9415fb4a932ff449a2c9d5045e32882d Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Thu, 6 Mar 2008 03:30:10 +0000 Subject: [PATCH] Initial release --- src/test/hello.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/test/hello.c diff --git a/src/test/hello.c b/src/test/hello.c new file mode 100644 index 0000000..94443f4 --- /dev/null +++ b/src/test/hello.c @@ -0,0 +1,5 @@ +int main() +{ + printf("%s", "Hello, world!\n"); + return 0; +}