mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
10 lines
167 B
Ruby
10 lines
167 B
Ruby
#!/usr/bin/env ruby
|
|
# For playing with stats1/2 -s
|
|
$stdout.sync = true
|
|
while true
|
|
x = rand()
|
|
y = rand()
|
|
xy = x*y
|
|
puts "x=#{x},y=#{y},xy=#{xy}"
|
|
sleep 0.1
|
|
end
|