learning_go/patterns/simpleFactory/ak47.go
2025-12-15 20:20:11 +03:00

15 lines
130 B
Go

package main
type AK47 struct {
Gun
}
func newAk47() IGun {
return AK47{
Gun: Gun{
name: "AK47",
power: 4,
},
}
}