Last active
June 14, 2018 05:01
-
-
Save kolov/b5b68a321219452d0dd8e9b679a412d8 to your computer and use it in GitHub Desktop.
This file contains 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
def volume( box: Box) = for { | |
width <- box.width | |
length <- box.length | |
height <- box.height | |
} yield width * height * length |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment