Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Created May 29, 2023 08:10
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 s1monw1/82c54124f4a64c758b402511f7d24ef5 to your computer and use it in GitHub Desktop.
Save s1monw1/82c54124f4a64c758b402511f7d24ef5 to your computer and use it in GitHub Desktop.
fun greetMammal(mammal: Mammal): String {
return when (mammal) {
is Human -> "Hello ${mammal.name}; You're working as a ${mammal.job}"
is Cat -> "Hello ${mammal.name}"
else -> "Hello unknown creature"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment