Created
May 16, 2020 20:00
-
-
Save lu4nm3/430ae962166a1a15144cc51931cae2fe 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
val shoppingCart: List[Item] = List( | |
Orange(0.25), | |
Orange(0.33), | |
Apple(0.22), | |
Apple(0.27), | |
Apple(0.30), | |
Baguette(2), | |
ToothPaste(4) | |
) | |
orderTotal(shoppingCart) // 10.69 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment