Skip to content

Instantly share code, notes, and snippets.

@davetron5000
Created July 21, 2009 01:10
Show Gist options
  • Save davetron5000/151029 to your computer and use it in GitHub Desktop.
Save davetron5000/151029 to your computer and use it in GitHub Desktop.
class Cylinder(h: Int, r:Int) extends Circle(r) {
val height = h;
override def area = (super.area * 2) + (2 * 3.14 * r * height)
def volume = super.area * height
override def toString = "Cylinder with radius " + radius
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment