comparison toys/hello.c @ 13:d87d8a056295

Add a hello world applet, partly as an example and partly for testing purposes.
author Rob Landley <rob@landley.net>
date Wed, 01 Nov 2006 22:23:58 -0500
parents
children 25447caf1b4b
comparison
equal deleted inserted replaced
12:478a2faf9119 13:d87d8a056295
1 /* vi: set sw=4 ts=4: */
2 /*
3 * hello.c - A hello world program.
4 */
5
6 #include "toys.h"
7
8 int hello_main(void)
9 {
10 printf("Hello world\n");
11 return 0;
12 }