Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. data class Circle(val radius: Double) : Shape {
  2. override fun perimeter() = 2 * PI * radius
  3. override fun area() = PI * radius * radius
  4. override fun diameter() = 2 * radius
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement