Guest User

Untitled

a guest
Dec 11th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def greeting # here we say def to define a method and put the name of our method
  2. puts "Please enter your name:" # here is the code inside our method
  3. name = gets.chomp
  4. puts "Hello" + " " + name
  5. end #and here we end or close our method
  6.  
  7. greeting
Add Comment
Please, Sign In to add comment