So we have the ternary operator

expression ? eval_if_true : eval_if_false

You can jimmy-rig this into a binary operator by doing

expression ? eval_if_true : nothing

so why not have it be an optional binary operator by making the colon 
optional, so that I could have

expression ? eval_if_true

does this cause some kind of problem?

Reply via email to