Mega Code Archive

 
Categories / Ruby / Method
 

String interpolation with method call

def say_goodnight(name)     "Good night, #{name}"   end   puts say_goodnight('Ma')