Last active
November 21, 2019 05:00
-
-
Save josep2/e68bd9137e762d667d7d2a088e0fca5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case class Player(firstName: String, lastName: String, ppg: Double, apg: Double, rpg: Double) | |
val jf = Player.apply("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