From 11b77089568a6386f90aab2bbdc0ca0df32ab765 Mon Sep 17 00:00:00 2001 From: Owen Shepherd Date: Thu, 27 Dec 2012 00:19:49 +0000 Subject: [PATCH] Add hello world file which can be used to establish that the I/O routines are working --- helloworld.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..bc9f993 --- /dev/null +++ b/helloworld.c @@ -0,0 +1,9 @@ +#include + +// This test program is provided to enable a quick test of PDCLib's console I/O +// functions + +int main(int argc, char** argv) +{ + printf("Hello world\n"); +} \ No newline at end of file -- 2.40.0