gokursu/structs/demo1.go

13 lines
166 B
Go
Raw Normal View History

2024-01-20 11:42:21 +00:00
package structs
import "fmt"
func Demo1() {
fmt.Println(product{"Computer", 5000, "XYZ"})
}
type product struct {
name string
unitPrice float64
brand string
}