]> git.cworth.org Git - hello/blob - hello.c
Create a standard "hello, world" program
[hello] / hello.c
1 /*
2  * hello.c
3  *
4  * Placed in the public domain by Bryan O'Sullivan
5  *
6  * This program is not covered by patents in the United States or other
7  * countries.
8  */
9
10 #include <stdio.h>
11
12 int main(int argc, char **argv)
13 {
14         printf("hello, world!\n");
15         return 0;
16 }