hello.c
changeset 76 94334f9a3ff3
child 77 89098f9e56b5
equal deleted inserted replaced
75:99cc040fab43 76:94334f9a3ff3
       
     1 /*
       
     2  * Placed in the public domain by Bryan O'Sullivan.  This program is
       
     3  * not covered by patents in the United States or other countries.
       
     4  */
       
     5 
       
     6 #include <stdio.h>
       
     7 
       
     8 int main(int argc, char **argv)
       
     9 {
       
    10 	printf("once more, hello.\n");
       
    11 	return 0;
       
    12 }