LC_NUMERIC locale will be set to "C" by default
[svn/Cll1h/.git] / demos / advanced-hello-world.c
index 32a2be3a5386af6b905de4e968efeb92d7c1b5ab..124788a5f180d5cb9a86f637898fe31d91a900a3 100644 (file)
@@ -7,11 +7,18 @@ program
  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("We can print", NULL, "safely.");
+ NIL="(hic sunt crocodiles)";
+ print("We can print", NULL, "safely.");
+
+ {
+  str p = "print", a = NULL;
+  print("* coalesce():"); 
+  print("We can", coalesce(p, "everything"), "almost", coalesce(a, "anything"), "safely."); 
+ }
+
+ echo("Surprisingly ->",NIL," (you can't see this)");
+ print("<- nothing special here.");
  print("* OFS");
  OFS="";
  EOL="";
This page took 0.096976 seconds and 4 git commands to generate.