You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/break-ex25.rb

12 lines
150 B

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