mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-22 18:06:52 +00:00
8 lines
125 B
Ruby
Executable file
8 lines
125 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
|
|
5000000000.times do
|
|
u = rand < 0.5 ? 0 : 1
|
|
v = rand < 0.1 ? 0 : 1
|
|
puts "#{u} #{v}"
|
|
end
|
|
puts "3 5"
|