gokursu/structs/demo1.go
2024-01-20 14:42:21 +03:00

13 lines
166 B
Go

package structs
import "fmt"
func Demo1() {
fmt.Println(product{"Computer", 5000, "XYZ"})
}
type product struct {
name string
unitPrice float64
brand string
}