Skip to content

Instantly share code, notes, and snippets.

@FrankWiebe
Created August 17, 2015 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrankWiebe/d45ca01fb9514c345e12 to your computer and use it in GitHub Desktop.
Save FrankWiebe/d45ca01fb9514c345e12 to your computer and use it in GitHub Desktop.
Exercise 21
def greeting
puts "Please enter your name:"
name = gets.chomp
puts "Hello" + " " + name
end
greeting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment