hgbook
diff 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 diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/it/examples/tour.cat1.it Thu Aug 13 18:57:50 2009 +0200 1.3 @@ -0,0 +1,17 @@ 1.4 +<!-- BEGIN tour.cat1 --> 1.5 +<screen><prompt>$</prompt> <userinput>cat hello.c</userinput> 1.6 +/* 1.7 + * Rilasciato nel pubblico dominio da Bryan O'Sullivan. Questo 1.8 + * programma non รจ protetto da brevetti negli Stati Uniti o in 1.9 + * altri paesi. 1.10 + */ 1.11 + 1.12 +#include <stdio.h> 1.13 + 1.14 +int main(int argc, char **argv) 1.15 +{ 1.16 + printf("ciao, mondo!\"); 1.17 + return 0; 1.18 +} 1.19 +</screen> 1.20 +<!-- END tour.cat1 -->