Skip to content

Instantly share code, notes, and snippets.

@mehyar500
Created October 8, 2016 03:18
Show Gist options
  • Save mehyar500/0dd4a73900a8e9e5516a63e57bba214f to your computer and use it in GitHub Desktop.
Save mehyar500/0dd4a73900a8e9e5516a63e57bba214f to your computer and use it in GitHub Desktop.
null created by mehyar500 - https://repl.it/Doaa/1
#Ruby
puts ("Please Enter Your First Name")
FirstName = gets.chomp!
puts ("Please Enter Your Last Name")
LastName = gets.chomp!
puts ("Please Enter Your City")
City = gets.chomp!
puts (" Hello " + FirstName + LastName + " from " + City)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment