franz newline
All checks were successful
Go / test (push) Successful in 3s

This commit is contained in:
Adam Jeniski 2025-11-04 18:39:55 -10:00
parent bfb8a2b0d8
commit a6f8502fbb

View File

@ -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 {