Major header file rewrite and cleanup, but no new functions
[svn/Cll1h/.git] / demos / advanced-hello-world.c
index 7117279b1ba688498733f03a5041103066b38655..a5475ba5efc3e313d4cf3b51913c0d3210766bf8 100644 (file)
@@ -6,15 +6,25 @@ 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="(hic sunt crocodiles)";
+ print("We can print",NULL,"safely.");
  print("* coalesce():"); 
- print("We can",coalesce("print","anything"),coalesce(NULL,"anything"),"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 ?");
+ repeat(4) print((WHOKNOWS ? "Hello" : "Hi"), (WHOKNOWS ? "world" : "friend"), (WHOKNOWS ? "!" : "?"));
 }
This page took 0.100027 seconds and 4 git commands to generate.