Love is

function loveIs() {

  function isLove(date) {
    if (date.isInfinite) {
      return true
    }
    return isLove(date + 1)
  }

  const today = 0

  if(isLove(today)) {
    console.log('I love you')
    return
  }
}

loveIs()

// A never return recursion
// Stack overflow in some language
// App crash on some platform
// Hardware damage on old devices

這才叫代碼寫詩
This is the real coding poem ()

Subscribe to TechRD.in

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe