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.
16 lines
253 B
Plaintext
16 lines
253 B
Plaintext
default
|
|
{
|
|
timer()
|
|
{
|
|
integer a = llGetLinkNumber();
|
|
if (a == 3)
|
|
llOwnerSay("1");
|
|
else
|
|
llOwnerSay("2");
|
|
if (!a)
|
|
llOwnerSay("3");
|
|
else
|
|
llOwnerSay("4");
|
|
}
|
|
}
|