(if (> x 2) (do-this when-true) (also-do-this when-true))
x > 2 ? doThis(whenTrue) : alsoDoThisWhenTrue();
x > 2 ? doThis(whenTrue) ; alsoDoThisWhenTrue();