DEBSOURCES
Skip Quicknav
sources / dlr-languages / 20090805%2Bgit.e6b28d27%2Bdfsg-3 / Merlin / Main / Languages / Ruby / Experimental / Misc / CustomUntil.rb
1234567891011
def do_until(cond) if cond then return end yield retry end i = 0 do_until(i > 4) do puts i i = i + 1 end