Difference between revisions of "Talk:Conditionals"
Jump to navigation
Jump to search
Clang Bailey (talk | contribs) |
Kaluura Boa (talk | contribs) |
||
Line 1: | Line 1: | ||
Not so important, actually. This style makes for less readable code. I'd rather see "case" conditional added before C style conditionals. --[[User:Clang Bailey|Clang Bailey]] 16:48, 19 December 2007 (PST) | Not so important, actually. This style makes for less readable code. I'd rather see "case" conditional added before C style conditionals. --[[User:Clang Bailey|Clang Bailey]] 16:48, 19 December 2007 (PST) | ||
You can already do such a thing with regular LSL: | |||
<lsl>llSay(1, "This is " + llList2String(["false", "true"], (a == 0)) );</lsl> | |||
--[[User:Kaluura Boa|Kaluura Boa]] |
Revision as of 16:54, 5 September 2008
Not so important, actually. This style makes for less readable code. I'd rather see "case" conditional added before C style conditionals. --Clang Bailey 16:48, 19 December 2007 (PST)
You can already do such a thing with regular LSL: <lsl>llSay(1, "This is " + llList2String(["false", "true"], (a == 0)) );</lsl> --Kaluura Boa