Guest User

Untitled

a guest
Dec 13th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. case class NewBorn(
  2. name: String,
  3. parents: Seq[String],
  4. bornTime: Option[DateTime] = None
  5. inList: Boolean = false
  6. ) {
  7. def updated(newBorn: NewBorn) = ???
  8. }
Add Comment
Please, Sign In to add comment