Skip to content

Instantly share code, notes, and snippets.

@Adsidera
Created October 5, 2015 18:15
Show Gist options
  • Save Adsidera/fdaecd2cc4ca743d58c9 to your computer and use it in GitHub Desktop.
Save Adsidera/fdaecd2cc4ca743d58c9 to your computer and use it in GitHub Desktop.
My first Ruby code
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