module StrAriburr::Greetings
Public Class Methods
greet_user(user, greeting = 'Hello')
click to toggle source
# File lib/string_ariburr/greetings.rb, line 3 def self.greet_user(user, greeting = 'Hello') "#{greeting} #{user}" end