Skip to content

Instantly share code, notes, and snippets.

@janetferguson
Created April 13, 2015 17:43
Show Gist options
  • Save janetferguson/069817be6612bdfd6d2f to your computer and use it in GitHub Desktop.
Save janetferguson/069817be6612bdfd6d2f 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