I\'ve always wondered how to write the \"A ? B : C\" syntax in a C++ compatible language.
\"A ? B : C\"
I think it works something like: (Pseudo
I assume you mean stuff like a = b ? c : d, where b is the condition, c is the value when b is true, and d is the value when b is false.