Last active
October 29, 2016 19:35
-
-
Save tiagodealmeida/8dda0fe9a316c0816bbfe144604ab9fc to your computer and use it in GitHub Desktop.
ruby for task 3.1
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
def greeting(name) | |
puts "Please enter your name:" | |
name = gets.chomp | |
puts "Hello" + " " + name | |
end | |
greeting("Tiago") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment