mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-24 00:51:53 +00:00
10 lines
148 B
Ruby
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
|