This enables an option that was being done unconditionally: to swap the `if` and `else` branches if the condition is shorter when negated. Enabled by default.
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
default{timer(){
|
|
|
|
integer a = llGetLinkNumber();
|
|
if (a == 3) llOwnerSay("1"); else llOwnerSay("2");
|
|
if (!a) llOwnerSay("3"); else llOwnerSay("4");
|
|
|
|
}}
|