Skip to content

Instantly share code, notes, and snippets.

@fboeller
Last active August 8, 2019 19:07
Show Gist options
  • Save fboeller/31997141efc63e28cb92540334c66cd3 to your computer and use it in GitHub Desktop.
Save fboeller/31997141efc63e28cb92540334c66cd3 to your computer and use it in GitHub Desktop.
fun diameter(shape: Shape): Double = when (shape) {
is Rectangle -> Math.sqrt(shape.x * shape.x + shape.y * shape.y)
is Circle -> 2 * shape.radius
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment