Created
March 28, 2019 02:52
-
-
Save iamwinnie/a1b4a25f7ab9293df8a2414b3dc121d3 to your computer and use it in GitHub Desktop.
3.1 Meet Ruby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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