mirror of
https://github.com/wahyd4/forego.git
synced 2026-08-09 21:26:01 +10:00
11 lines
149 B
Ruby
11 lines
149 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
$stdout.sync = true
|
|
|
|
10.times do |i|
|
|
puts "sample log message... " * rand(i*1000) + "ok - #{i}"
|
|
sleep 1
|
|
end
|
|
|
|
puts "finish!"
|