gokursu/structs/demo1.go

14 lines
188 B
Go
Raw Normal View History

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