Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. func (c circle) area_calculate() float64{
  2. return c.radius*c.radius*3
  3. }
  4. func (c circle) perimeter_calculate() float64{
  5. return 2*c.radius*3
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement