RosettaCodeData/Task/Loops-Do-while/NetRexx/loops-do-while.netrexx
2023-07-01 13:44:08 -04:00

11 lines
185 B
Text

/* NetRexx */
options replace format comments java crossref savelog symbols nobinary
say
say 'Loops/Do-while'
i_ = 0
loop until i_ // 6 = 0
i_ = i_ + 1
say i_
end