Skip to content

Instantly share code, notes, and snippets.

@kajatiger
Created October 19, 2016 19:26
Show Gist options
  • Save kajatiger/def349681aa3faf08f40d674b7c89916 to your computer and use it in GitHub Desktop.
Save kajatiger/def349681aa3faf08f40d674b7c89916 to your computer and use it in GitHub Desktop.
simple ruby def
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