RosettaCodeData/Task/Loops-Break/EasyLang/loops-break.easy

7 lines
76 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
repeat
2026-04-30 12:34:36 -04:00
a = random 0 19
2024-03-06 22:25:12 -08:00
print a
until a = 10
2026-04-30 12:34:36 -04:00
print random 0 19
2023-07-01 11:58:00 -04:00
.