hgbook
view it/examples/tour.cat1.it @ 797:26b05b7dd445
Minor changes and translation of code snippets for Ch.10.
author | Giulio@puck |
---|---|
date | Thu Aug 13 18:57:50 2009 +0200 (2009-08-13) |
parents | |
children | 11a6ba60bb9e |
line source
1 <!-- BEGIN tour.cat1 -->
2 <screen><prompt>$</prompt> <userinput>cat hello.c</userinput>
3 /*
4 * Rilasciato nel pubblico dominio da Bryan O'Sullivan. Questo
5 * programma non รจ protetto da brevetti negli Stati Uniti o in
6 * altri paesi.
7 */
9 #include <stdio.h>
11 int main(int argc, char **argv)
12 {
13 printf("ciao, mondo!\");
14 return 0;
15 }
16 </screen>
17 <!-- END tour.cat1 -->