Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 31, 2019 07:59
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/91db29c2769a406a103f8fa7fcd26684 to your computer and use it in GitHub Desktop.
Save jasongorman/91db29c2769a406a103f8fa7fcd26684 to your computer and use it in GitHub Desktop.
real function quote(room, pricePerSqMtr, roundUp)
real pricePerSqMtr
logical roundUp
real area
area = area_of_room(room)
if (roundUp) then
area = ceil(area)
endif
quote = area * pricePerSqMtr
return
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment