Skip to content

Instantly share code, notes, and snippets.

@lu4nm3
Created May 16, 2020 20:00
Show Gist options
  • Save lu4nm3/430ae962166a1a15144cc51931cae2fe to your computer and use it in GitHub Desktop.
Save lu4nm3/430ae962166a1a15144cc51931cae2fe to your computer and use it in GitHub Desktop.
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