Mega Code Archive

 
Categories / Ruby / Method
 

Method with three parameters

def putter(first_word, second_word, third_word)   puts first_word + " " + second_word + " " + third_word end putter "Hello", "from", "Ruby."