Skip to content

Instantly share code, notes, and snippets.

@iamwinnie
Created March 28, 2019 02:52
Show Gist options
  • Save iamwinnie/a1b4a25f7ab9293df8a2414b3dc121d3 to your computer and use it in GitHub Desktop.
Save iamwinnie/a1b4a25f7ab9293df8a2414b3dc121d3 to your computer and use it in GitHub Desktop.
3.1 Meet Ruby
my_name = "Winnie"
puts "hello"
def sayhello(name)
puts "hello" + " " + name
end
sayhello(my_name)
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