Skip to content

Instantly share code, notes, and snippets.

@khazelton77
Created May 4, 2016 14:42
Show Gist options
  • Save khazelton77/bf523e5842c0ee89603b46945d76d219 to your computer and use it in GitHub Desktop.
Save khazelton77/bf523e5842c0ee89603b46945d76d219 to your computer and use it in GitHub Desktop.
First method "Greeting"
def greeting
puts "Please enter your name:"
name = gets.chomp
puts "And who is your friend?"
dog = gets.chomp
puts "Hello" + " " + name + " and " + dog
end
greeting
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment