Hacker News new | ask | show | jobs
by ludwik 711 days ago
It would be something like this:

   if (God does exist)
      return isComputable(() => true)
    else 
      return isComputable(() => false)
(where `() => true` / `() => false` are functions, returning true / false)

You do know that the code above will always return "true", without having to know whether god exists.