summaryrefslogtreecommitdiff
path: root/benchmark/io_file_write.rb
blob: aa1be0e5fe8cb1b9974f23708a74bd32c734f3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Seek and Write file.
#

require 'tempfile'

max = 200_000
str = "Hello world!  " * 1000
f = Tempfile.new('yarv-benchmark')

max.times{
  f.seek 0
  f.write str
}