5 lines
61 B
Ruby
5 lines
61 B
Ruby
val = 0
|
|
begin
|
|
val += 1
|
|
puts val
|
|
end while val % 6 != 0
|
|
|