some details
[svn/Cll1h/.git] / demos / advanced-hello-world.c
index 1212211d5f2378680cb28b482e43668bc3fcffc0..4b0985900c707a45e1dd8e48ce1a2112039d8e57 100644 (file)
@@ -2,6 +2,23 @@
 
 program
 {
- echo("Hello ",NULL,"world","  ! ");
- print("Hello","world",NULL,"!");
+ print("* echo()");
+ echo("Hello"," ","world","  !\n");
+ print("* print()");
+ print("Hello","world","!");
+ print("* NIL");
+ print("We can print",NULL,"safely.");
+ NIL="(anything)";
+ print("We can print",NULL,"safely.");
+ print("* coalesce():"); 
+ print("We can",coalesce("print","everything"),coalesce(NULL,"everything"),"safely."); 
+ print("* OFS");
+ OFS=":";
+ print("We","can","customize","print");
+ OFS="...";
+ EOL="<--\n";
+ print("* MAYBE ?");
+ repeat(4) print((MAYBE ? "Hello" : "Hi"), (MAYBE ? "world" : "friend"), (MAYBE ? "!" : "?"));
+ print("* WHOKNOWS ?");
+ repeat(4) print((WHOKNOWS ? "Hello" : "Hi"), (WHOKNOWS ? "world" : "friend"), (WHOKNOWS ? "!" : "?"));
 }
This page took 0.0924 seconds and 4 git commands to generate.