----
function ifNullChecks() {
  if (x===null) { yep() }
  return
}
----
ifNullChecks = ->
  if x == null
    yep()
  return
