diff --git a/list/list.go b/list/list.go index 7e4a134..56fb9f6 100644 --- a/list/list.go +++ b/list/list.go @@ -51,7 +51,6 @@ func Cons(val any, rest IList) IList { func (this *List) Conj(val any) IList { return Cons(val, this) - } func (this *EmptyList) Conj(val any) IList {