Mega Code Archive

 
Categories / Ruby / Method
 

A simple definition for a method named hello, created with the keywords def and end

def hello   puts "Hello, Matz!" end hello # => Hello, Matz!