Skip to content

Instantly share code, notes, and snippets.

@Steph-harris
Created August 4, 2015 05:52
Show Gist options
  • Save Steph-harris/281129d43a3cfb4fd958 to your computer and use it in GitHub Desktop.
Save Steph-harris/281129d43a3cfb4fd958 to your computer and use it in GitHub Desktop.
Ex. 21 Ruby
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