Created
September 15, 2018 10:40
-
-
Save joel-extremo/e82ea7d2703ed65e0b34b6339bff014c 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
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