2 lines
84 B
Text
2 lines
84 B
Text
// x will be 1 if condition is a true value, 2 otherwise.
|
|
var/x = condition ? 1 : 2
|
// x will be 1 if condition is a true value, 2 otherwise.
|
|
var/x = condition ? 1 : 2
|