package strings func Find[T comparable](slice []T, value T) bool { for _, v := range slice { if v == value { return true } } return false }