Implement builders to build Go from source code

This commit is contained in:
MaksimZhukov
2020-06-09 22:52:06 +03:00
parent 8c06ab5f1e
commit 6cf25b0561
21 changed files with 836 additions and 0 deletions

View File

@ -0,0 +1,26 @@
package main
import "fmt"
type rect struct {
width, height int
}
func (r *rect) area() int {
return r.width * r.height
}
func (r rect) perim() int {
return 2*r.width + 2*r.height
}
func main() {
r := rect{width: 10, height: 5}
fmt.Println("area: ", r.area())
fmt.Println("perim:", r.perim())
rp := &r
fmt.Println("area: ", rp.area())
fmt.Println("perim:", rp.perim())
}