1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files
go_basics/part_3/3.1/3.1.7/golang/factory/main.go
2025-06-04 18:38:52 +03:00

23 lines
454 B
Go

package main
import (
"fmt"
"golang/factory/shape"
)
func main() {
myShape := shape.Shape{
Name: "Cube",
Center: shape.Point{X: 4, Y: 5},
}
myShape1 := shape.Shape{"Triangle", shape.Point{1, 9}}
fmt.Printf("%+v\n", myShape) // {Name:Cube Center:{X:4 Y:5}}
fmt.Printf("%+v\n", myShape1) // {Name:Triangle Center:{X:1 Y:9}}
myShape.Center.Y = 2
myShape.Name = "Circle"
fmt.Printf("%+v\n", myShape) // {Name:Circle Center:{X:4 Y:2}}
}