Skip to content

Instantly share code, notes, and snippets.

@ThomasAlexandre
Created January 12, 2012 10:02
Show Gist options
  • Select an option

  • Save ThomasAlexandre/1599662 to your computer and use it in GitHub Desktop.

Select an option

Save ThomasAlexandre/1599662 to your computer and use it in GitHub Desktop.
Jfokus 2012 scala case class example
case class Conference(name:String="JFokus",year:Int=2011,myTalk:Option[String]=None)
val lastYear = Conference()
val thisYear = Conference(year=2012,myTalk=Some("One-liners are your friend"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment