Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. fun diameter(shape: Shape): Double = when (shape) {
  2. is Rectangle -> Math.sqrt(shape.x * shape.x + shape.y * shape.y)
  3. is Circle -> 2 * shape.radius
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement