mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-22 00:31:17 +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
|