Skip to content

Instantly share code, notes, and snippets.

@fboeller
Last active August 8, 2019 19:17
Show Gist options
  • Save fboeller/cc6fd96f70a421a1d6792141991ac28a to your computer and use it in GitHub Desktop.
Save fboeller/cc6fd96f70a421a1d6792141991ac28a to your computer and use it in GitHub Desktop.
fun area(shape: Shape): Double = when (shape) {
is Rectangle -> shape.x * shape.y
is Circle -> PI * shape.radius * shape.radius
is Parallelogram -> shape.side * shape.height
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment