5 lines
83 B
Ruby
5 lines
83 B
Ruby
loop do
|
|
print a = rand(20)
|
|
puts or break if a == 10
|
|
puts "\t#{rand(20)}"
|
|
end
|