String includes another string



examples/strings/includes.cr
text = "The black cat climbed the green tree"

puts text.includes?("cat")
puts text.includes?("dog")