Skip to content

Instantly share code, notes, and snippets.

@ostretsov
Created January 9, 2015 07:38
Show Gist options
  • Save ostretsov/3b42ea2b523d104f582c to your computer and use it in GitHub Desktop.
Save ostretsov/3b42ea2b523d104f582c to your computer and use it in GitHub Desktop.
class Rectangle(width: Int, height: Int)
class Square(side: Int) extends Rectangle(side, side)
val s = new Square(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment