Skip to content

Instantly share code, notes, and snippets.

@aortiz49
Created January 21, 2024 04:43
Show Gist options
  • Save aortiz49/0084e9f546227b64acd5f6117a90ace7 to your computer and use it in GitHub Desktop.
Save aortiz49/0084e9f546227b64acd5f6117a90ace7 to your computer and use it in GitHub Desktop.
Homework #01
puts "Please enter your first name: "
first_name = gets.chomp
puts "Please enter 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 #{first_name.length + last_name.length} characters in it"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment