1 2 3 4 5 6 7 8 9 10
package game type Hand struct { PileOfCardsBase } func NewHand() *Hand { h := Hand{PileOfCardsBase{[]*Card{}}} return &h }