Code I\'m exploring:
type Stack struct { length int values []int } func (s *Stack) Push(value int) { // ... } func (s *Stack) Pop() int { //