diff --git a/.gitignore b/.gitignore index 50f9751..3e2c2ee 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -/test +/test/hello diff --git a/build.xml b/build.xml index 5f27a11..44c00e6 100644 --- a/build.xml +++ b/build.xml @@ -18,10 +18,6 @@ - - @@ -42,9 +38,6 @@ - - - diff --git a/test/hello.c b/test/hello.c new file mode 100644 index 0000000..0f46af9 --- /dev/null +++ b/test/hello.c @@ -0,0 +1,9 @@ +#include + +int main() +{ + printf("Hello world!\n"); + + return(0); +} +