Skip to content

Instantly share code, notes, and snippets.

@sunviwo
Last active March 19, 2019 03:18
Show Gist options
  • Save sunviwo/662dd8489bb889537b4108e7bae94d1e to your computer and use it in GitHub Desktop.
Save sunviwo/662dd8489bb889537b4108e7bae94d1e to your computer and use it in GitHub Desktop.
Working with Ruby strings
puts "What's your first name?"
first_name = gets.chomp
puts "What's your last name?"
last_name = gets.chomp
full_name = "#{first_name} #{last_name}"
puts "Your full name is #{full_name}."
puts "Your full name reversed is " + full_name.reverse
puts "Your name has " + full_name.length + " characters in it"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment