module StringWorkParker::Greetings
Public Class Methods
greet_user(user, greeting = "Hello")
click to toggle source
# File lib/string_work_parker/greeting.rb, line 2 def self.greet_user(user, greeting = "Hello") "#{greeting} #{user}" end