From: Owen Shepherd Date: Thu, 27 Dec 2012 00:19:49 +0000 (+0000) Subject: Add hello world file which can be used to establish that the I/O routines are working X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=11b77089568a6386f90aab2bbdc0ca0df32ab765 Add hello world file which can be used to establish that the I/O routines are working --- 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