Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Last active March 27, 2019 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/91aa43ee0b0e032aec4d0ef8b015df26 to your computer and use it in GitHub Desktop.
Save jasongorman/91aa43ee0b0e032aec4d0ef8b015df26 to your computer and use it in GitHub Desktop.
fun quote(room : Room, carpet : Carpet) : Double{
var area = room.width * room.length
if(carpet.roundUp)
area = Math.ceil(area)
return carpet.pricePerSqrMetre * area
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment