hydra/test/fixtures/echo_the_dolphin.rb

8 lines
118 B
Ruby
Executable File

#!/usr/bin/env ruby
# Echoes back to the sender
$stdout.sync = true
while line = $stdin.get
$stdout.write line
end