Guest User

Untitled

a guest
Jul 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. case class MedikitUsed(val name: String, val useAmount: Int)
  2. val result = new MedikitUsed("Sean", 0) match {
  3. case MedikitUsed(name, 0) => name + " attempted to use none of their medikit and that makes no sense."
  4. }
Add Comment
Please, Sign In to add comment