14 lines
114 B
Ruby
14 lines
114 B
Ruby
module Imbecile
|
|
module CLI
|
|
|
|
class << self
|
|
|
|
def run(args)
|
|
p args
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|