Difference between revisions of "Conditionals"

From Second Life Wiki
Jump to navigation Jump to search
Line 3: Line 3:
llSay(1, "This is " + (a == 0) ? "false" : "true");
llSay(1, "This is " + (a == 0) ? "false" : "true");


:Easy to implement in the compiler, no changes to the bytecode needed.
:Easy to implement in the compiler, no changes to the bytecode needed. [[User:Strife Onizuka|Strife Onizuka]] 02:52, 8 April 2007 (PDT)

Revision as of 02:52, 8 April 2007

C style conditionals would also be useful, i.e.

llSay(1, "This is " + (a == 0) ? "false" : "true");

Easy to implement in the compiler, no changes to the bytecode needed. Strife Onizuka 02:52, 8 April 2007 (PDT)