Skip to content

Instantly share code, notes, and snippets.

@JonFranchi
Created June 22, 2015 03:50
Show Gist options
  • Save JonFranchi/1aaae63fba242a4ca60f to your computer and use it in GitHub Desktop.
Save JonFranchi/1aaae63fba242a4ca60f to your computer and use it in GitHub Desktop.
Learning Ruby
def greeting
puts "Please Enter Your Name:" #comment syntax is less fun than others.
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