X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=demos%2Fadvanced-hello-world.c;h=4b0985900c707a45e1dd8e48ce1a2112039d8e57;hb=8db501a078e67a152fc186cbee4ab168170b844e;hp=7117279b1ba688498733f03a5041103066b38655;hpb=6e567bcce620b5312125f920e88c68a1404e71bf;p=svn%2FCll1h%2F.git diff --git a/demos/advanced-hello-world.c b/demos/advanced-hello-world.c index 7117279..4b09859 100644 --- a/demos/advanced-hello-world.c +++ b/demos/advanced-hello-world.c @@ -6,15 +6,19 @@ program echo("Hello"," ","world"," !\n"); print("* print()"); print("Hello","world","!"); - print("* MAYBE ?"); - repeat(4) print((MAYBE ? "Hello" : "Hi"), (MAYBE ? "world" : "friend"), (MAYBE ? "!" : "?")); - print("* WHOKNOWS ?"); - repeat(4) print((WHOKNOWS ? "Hello" : "Hi"), (WHOKNOWS ? "world" : "friend"), (WHOKNOWS ? "!" : "?")); print("* NIL"); print("We can print",NULL,"safely."); + NIL="(anything)"; + print("We can print",NULL,"safely."); print("* coalesce():"); - print("We can",coalesce("print","anything"),coalesce(NULL,"anything"),"safely."); + 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 ? "!" : "?")); }