Skip to content

Instantly share code, notes, and snippets.

@ostretsov
Created December 30, 2014 04:12
Show Gist options
  • Save ostretsov/fd1619cf8a640b133e98 to your computer and use it in GitHub Desktop.
Save ostretsov/fd1619cf8a640b133e98 to your computer and use it in GitHub Desktop.
class NewYear(y: Int) {
val MinYear = 2014
require(y > MinYear)
val year = y
def this() = this(2015)
override def toString = "Upcoming year is "+year
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment