Skip to content

Instantly share code, notes, and snippets.

@SMaguina
Last active August 29, 2015 14:20
Show Gist options
  • Save SMaguina/7a2a476eb9c6edc02215 to your computer and use it in GitHub Desktop.
Save SMaguina/7a2a476eb9c6edc02215 to your computer and use it in GitHub Desktop.
Ruby lesson 1
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