Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created March 31, 2019 09:13
Embed
What would you like to do?
real function area_of_circular_room(room)
real room(1)
real radius
radius = room(1)
area_of_circular_room = (radius * 2)**2
return
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment