mirror of
https://github.com/wahyd4/forego.git
synced 2026-08-09 05:07:05 +10:00
14 lines
143 B
Ruby
14 lines
143 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
$stdout.sync = true
|
|
|
|
puts "a"
|
|
sleep 1
|
|
puts "a\nb"
|
|
sleep 1
|
|
puts "a\nb\nc"
|
|
sleep 1
|
|
puts "a\nb\nc\nd"
|
|
sleep 1
|
|
puts "finish!"
|