Writing a stack package.
package stack type Stack struct { data []interface{} } func (s *Stack) IsEmpty() bool { return len(s.data) == 0 } func (s