/* * hello.c * * Hellorld application using Psion's "CLIB" - just plain C, no Psion extensions */ #include int main(VOID) { // Does sprintf work here? The SDK is probably too old, but modern conventions would be nice printf("Hellorld!"); // Wait for a key to be pressed getchar(); // Exit, not sure why 0 is being passed as it's a void? But this is the SDK example code return(0); }