X-Git-Url: http://git.harvie.cz/?a=blobdiff_plain;f=demos%2Fadvanced-hello-world.c;h=e855e5e9d2894a8a29bf38d287dc9fe800ea7ebb;hb=de48beef600fc5889f30b2094e392c1f5d8ed09a;hp=0c166659e4eefe610f379ae802ef95b5d622be32;hpb=21720b7b452dd15e967b7cc860c620f2175d0d2b;p=svn%2FCll1h%2F.git diff --git a/demos/advanced-hello-world.c b/demos/advanced-hello-world.c index 0c16665..e855e5e 100644 --- a/demos/advanced-hello-world.c +++ b/demos/advanced-hello-world.c @@ -5,5 +5,6 @@ program echo("Hello ",NULL," ","world"," ! "); print("Hello", "world",NULL,"!"); - print(MAYBE ? "Hello" : "Hi", WHOKNOWS ? "world" : "friend", MAYBE ? "!" : "?"); + repeat(4) print((MAYBE ? "Hello" : "Hi"), (MAYBE ? "world" : "friend"), (MAYBE ? "!" : "?")); + repeat(4) print((WHOKNOWS ? "Hello" : "Hi"), (WHOKNOWS ? "world" : "friend"), (WHOKNOWS ? "!" : "?")); }