Skip to content

Instantly share code, notes, and snippets.

View oherych's full-sized avatar

Oleh Herych oherych

  • Intellias
  • Lviv, Ukraine
  • 15:08 (UTC +03:00)
  • LinkedIn in/oherych
View GitHub Profile
package sssss
import "testing"
type A struct {
List []interface{}
}
func (a *A) Add(in interface{}) {
a.List = append(a.List, in)
package sssss
import "testing"
type A struct {
List []interface{}
}
func (a *A) Add(in interface{}) {
a.List = append(a.List, in)