Skip to content

Instantly share code, notes, and snippets.

@eungjun-yi
Created February 29, 2020 11:57
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 eungjun-yi/947bc9c77951f7aa92e581ed52063d35 to your computer and use it in GitHub Desktop.
Save eungjun-yi/947bc9c77951f7aa92e581ed52063d35 to your computer and use it in GitHub Desktop.
fun isYes(answer: String): Boolean {
return when(answer) {
"yes" -> true
else -> false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment