ruby - two-fer

This commit is contained in:
2018-09-16 15:09:23 -04:00
parent a43bafb621
commit 3eafeeb73a
3 changed files with 68 additions and 0 deletions

5
ruby/two-fer/two_fer.rb Normal file
View File

@ -0,0 +1,5 @@
module TwoFer
def self.two_fer(name = 'you')
"One for #{name}, one for me."
end
end