X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=demos%2Fadvanced-hello-world.c;fp=demos%2Fadvanced-hello-world.c;h=a5475ba5efc3e313d4cf3b51913c0d3210766bf8;hb=bce4b05df61258229122aa6a77aa67ac96462393;hp=32a2be3a5386af6b905de4e968efeb92d7c1b5ab;hpb=06ab91f038972610338e77f4f488c7ef5c132e69;p=svn%2FCll1h%2F.git diff --git a/demos/advanced-hello-world.c b/demos/advanced-hello-world.c index 32a2be3..a5475ba 100644 --- a/demos/advanced-hello-world.c +++ b/demos/advanced-hello-world.c @@ -8,10 +8,12 @@ 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="";