X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=demos%2Fadvanced-hello-world.c;h=a5475ba5efc3e313d4cf3b51913c0d3210766bf8;hb=1a8d78d9e9f1a4a2e8b7c3b740c5516195fbc04b;hp=07a14b851a91763e7b8a46283dce1f3b48c2e8b7;hpb=f57259369784a5df46b75488d50e431ed1741235;p=svn%2FCll1h%2F.git diff --git a/demos/advanced-hello-world.c b/demos/advanced-hello-world.c index 07a14b8..a5475ba 100644 --- a/demos/advanced-hello-world.c +++ b/demos/advanced-hello-world.c @@ -8,14 +8,21 @@ program print("Hello","world","!"); print("* NIL"); print("We can print",NULL,"safely."); - NIL="(anything)"; + NIL="(hic sunt crocodiles)"; print("We can print",NULL,"safely."); print("* coalesce():"); - print("We can",coalesce("print","everything"),coalesce(NULL,"everything"),"safely."); + print("We can",coalesce("print","everything"),"almost",coalesce(NULL,"anything"),"safely."); + echo("Surprisingly ->",NIL," (you can't see this)"); + print("<- nothing special here."); print("* OFS"); + OFS=""; + EOL=""; + print("We","Can","Print","Without","Spaces","BetweenArgs."); OFS=":"; - print("We","can","customize","print"); + print("We","can","customize","print."); OFS="..."; + EOL="<--\n"; + print(""); print("* MAYBE ?"); repeat(4) print((MAYBE ? "Hello" : "Hi"), (MAYBE ? "world" : "friend"), (MAYBE ? "!" : "?")); print("* WHOKNOWS ?");