Skip to content

Instantly share code, notes, and snippets.

@magdamiu
Created February 2, 2020 15:01
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 magdamiu/7e4ba9f4ad5594a1fd48740931a6bb9f to your computer and use it in GitHub Desktop.
Save magdamiu/7e4ba9f4ad5594a1fd48740931a6bb9f to your computer and use it in GitHub Desktop.
Nothing and Unit in Kotlin
fun reportError(): Nothing {
throw RuntimeException()
}
fun displayHelloMessage(): Unit {
println("Hello from Kotlin! :)")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment