# value of pi | |
a = 3.14 | |
# calculate the volume of a cylinder | |
# b -- radius | |
# c -- height | |
foo(b, c): | |
return (4/3) * a * b^2 * c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
# value of pi | |
a = 3.14 | |
# calculate the volume of a cylinder | |
# b -- radius | |
# c -- height | |
foo(b, c): | |
return (4/3) * a * b^2 * c |