RosettaCodeData/Task/Loops-Do-while/Jactl/loops-do-while.jactl

6 lines
55 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
int i = 0
do{
i++
println i
} until (i % 6 == 0)