Last active
March 19, 2019 03:18
-
-
Save sunviwo/662dd8489bb889537b4108e7bae94d1e to your computer and use it in GitHub Desktop.
Working with Ruby strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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