hydra/test/echo_the_dolphin.rb

8 lines
120 B
Ruby
Executable File

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