function f() {
  try {
    f()
  } catch (e) {
    f()
  }
}
View all comments