2013-08-14 23:43:36 +00:00

12 lines
170 B
Ruby

module Producer
module Core
module Actions
class Echo < Action
def apply
env.output arguments.first
end
end
end
end
end