GitNexus/gitnexus/test/fixtures/lang-resolution/ruby-sequential-mixin/lib/usage.rb

10 lines
148 B
Ruby

require_relative 'account'
class Usage
def run
a = Account.new
a.call_greet
a.call_serialize
Account.log("from Usage")
end
end