16 lines
218 B
Ruby
16 lines
218 B
Ruby
module Producer
|
|
module Core
|
|
module Actions
|
|
class Echo < Action
|
|
def name
|
|
'echo'
|
|
end
|
|
|
|
def apply
|
|
output.puts arguments.first
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|