Guest User

Untitled

a guest
Feb 13th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 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:"
  3. name = gets.chomp
  4. puts "Hello" + " " + name # here’s the code inside our method
  5. end # and here we end or close our method
  6.  
  7. greeting
Add Comment
Please, Sign In to add comment