Skip to content

Instantly share code, notes, and snippets.

@stomatocode
Created March 29, 2013 20:30
Show Gist options
  • Save stomatocode/5273419 to your computer and use it in GitHub Desktop.
Save stomatocode/5273419 to your computer and use it in GitHub Desktop.
def welcome(string)
if (string =~ /CA(.*)/ )
puts "Welcome to California"
else
puts "You should move to California"
end
end
puts "Please enter your whole address, including state and zip: "
address = gets.chomp
welcome(address)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment