Skip to content

Instantly share code, notes, and snippets.

@CheolhoJeon
Created June 18, 2021 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CheolhoJeon/a1485fed908b0bff7bee9ced5a4fc22c to your computer and use it in GitHub Desktop.
Save CheolhoJeon/a1485fed908b0bff7bee9ced5a4fc22c to your computer and use it in GitHub Desktop.
package chap6.ExceptionHandling
fun function1(): Int =
throw Exception1(-52)
fun function2() = function1()
fun function3() = function2()
fun main() {
// function3()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment