Skip to content

Instantly share code, notes, and snippets.

@freedive-cebu30
Created April 23, 2019 06:36
country = 'america'
p country.include?('america')
# true
p country.include?('ame')
# true
p country.include?('amef')
# false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment