Skip to content

Instantly share code, notes, and snippets.

@joel-extremo
Created September 15, 2018 10:40
Show Gist options
  • Save joel-extremo/e82ea7d2703ed65e0b34b6339bff014c to your computer and use it in GitHub Desktop.
Save joel-extremo/e82ea7d2703ed65e0b34b6339bff014c to your computer and use it in GitHub Desktop.
3.1: Meet 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