

f = -> f()

try
  f()
catch error
  console.log '### ERROR ###'
  console.log error.stack
  throw error
  # throw new Error error[ 'message' ]

console.log 'OK'
