Skip to content

Instantly share code, notes, and snippets.

@josep2
Created November 21, 2019 04:39
Show Gist options
  • Save josep2/99028259d5d61392a855a8b380c5893a to your computer and use it in GitHub Desktop.
Save josep2/99028259d5d61392a855a8b380c5893a to your computer and use it in GitHub Desktop.
case class Player(firstName: String, lastName: String, ppg: Double, apg: Double, rpg: Double)
val jf = Player.tupled("Jimmer", "Fredette", 1.1, 0.1, 0.2)
print(jf)
// Player(Jimmer,Fredette,1.1,0.1,0.2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment