Skip to content

Instantly share code, notes, and snippets.

@michalkowol
Last active August 29, 2015 14:10
Show Gist options
  • Save michalkowol/0042b1d075075a483a5b to your computer and use it in GitHub Desktop.
Save michalkowol/0042b1d075075a483a5b to your computer and use it in GitHub Desktop.
case class User(name: String, age: Int)
User(name = "Bob", age = 10).copy(age = 40) // User(Bob, 40)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment