Skip to content

Instantly share code, notes, and snippets.

@reetasingh
Last active January 18, 2023 03:44
Show Gist options
  • Save reetasingh/85a9f8a1370ae9e0f203369a3c2e0942 to your computer and use it in GitHub Desktop.
Save reetasingh/85a9f8a1370ae9e0f203369a3c2e0942 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"math"
)
type Circle struct {
r float64
}
func (c *Circle) area() float64 {
return math.Pi * c.r * c.r
}
func main() {
c := new(Circle)
c.r = 1.2
fmt.Println(c.area())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment