box-o-sand/lcthw-remnants/break-ex25.rb
Dan Buch f2380eef05 Add 'lcthw-remnants/' from commit 'e172f73c8297b22a579c94558f0c171ca74a0e5c'
git-subtree-dir: lcthw-remnants
git-subtree-mainline: 4107485591
git-subtree-split: e172f73c82
2013-01-09 23:42:19 -05:00

12 lines
150 B
Ruby

def main
ex25 = IO.popen("./ex25", "w+")
ex25.write("z" * 10000)
ex25.flush
puts ex25.readlines.join("\n")
end
if $0 == __FILE__
main
end