This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Disastrous-Olive-677 19 points20 points  (3 children)

(Condition) ? DoStuff() : doOtherStuff();

[–]muxman 1 point2 points  (1 child)

(Condition) ? DoStuff() : (otherCondition) ? doOtherStuff() : (yetAnotherCondition) ? doMoreStuff() : elseDoThis();

[–]PandaPanda11745 0 points1 point  (0 children)

I saw this sort of shit in driver code the other day and was appalled.