hydra/test/echo_the_dolphin.rb

12 lines
162 B
Ruby

#!/usr/bin/env ruby
# read lines from stdin
# echo each line back
# on EOF, quit nicely
$stdout.sync = true
while line = $stdin.gets
$stdout.write(line)
end