diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..21bb0c7 --- /dev/null +++ b/hello.c @@ -0,0 +1,14 @@ +/** + * @file hello.c + * @author @$Author$ + * @date @$Date$ + * @version @$Revision$ + * + * $Id$ + */ + +#include "stdio.h" + +int main(int argc, char *argv[]) + printf("Hello, world!"); +}