Skip to content

Instantly share code, notes, and snippets.

@AttyC
Created June 3, 2015 18:45
Show Gist options
  • Save AttyC/13fc660a20b9f7d21427 to your computer and use it in GitHub Desktop.
Save AttyC/13fc660a20b9f7d21427 to your computer and use it in GitHub Desktop.
def greeting
puts "Please enter your name:"
name = gets.chomp
puts "hello" + " " + name
end
greeting
@AttyC
Copy link
Author

AttyC commented Jun 3, 2015

First Ruby program!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment