At 05:55 AM 8/23/01 -0700, Cameron Kaiser wrote:
 void main(int argc, char **argv) {
        printf("Hello world!\n");
        exit(0);
} 
I'm sure you could save a few more bytes by eliminating
the call to main() and examining the source of the
assembler stubs that would normally call _main, and
of course you don't need a full printf() when any
low-level put-string function would do.
- John