6 lines
91 B
Ruby
6 lines
91 B
Ruby
class Hello < Thor
|
|
desc "hello", "Say hello"
|
|
def hello
|
|
puts "Hello World"
|
|
end
|
|
end |