2014-10-09 19:44:07 +00:00

16 lines
212 B
Ruby

module Producer
module Core
module Actions
class Echo < Action
def name
'echo'
end
def apply
output.puts arguments
end
end
end
end
end