Created
May 16, 2020 20:01
-
-
Save lu4nm3/dc06e5c9bdb1581a6233dea31e9af53f 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[Fruit] = List( | |
Orange(0.25), | |
Orange(0.33), | |
Apple(0.22), | |
Apple(0.27), | |
Apple(0.30) | |
) | |
orderTotal(shoppingCart) // 4.69 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment