- starts_with
String starts with
examples/strings/starts_with.cr
text = "The black cat climbed the green tree" puts text.starts_with?("The") puts text.starts_with?("the")
text = "The black cat climbed the green tree" puts text.starts_with?("The") puts text.starts_with?("the")