#define or ||
#define TRUE 1
#define FALSE 0
-#define MAYBE (int)((_srtime?0:(time(&_srtime),srandom(_srtime))),random()%2)
+#define MAYBE (int)((_srtime?random():(_srtime=time(NULL),srandom(_srtime),random()))%2)
#define WHOKNOWS (int)(srandom(time(NULL)),random()%2)
#define bool_str(I) (I?"TRUE":"FALSE")
#define boolean int
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 ? "!" : "?"));
}