I imagined `a?` would be useful as shorthand for c...
# language-proposals
e
I imagined
a?
would be useful as shorthand for checking for null, so instead of:
if (a != null) doThing()
you could just do:
if (a?) doThing()