Loops/Break: Difference between revisions

imported>Thebeez
(Added uBasic/4tH version)
 
(One intermediate revision by one other user not shown)
Line 1,347:
 
=={{header|EasyLang}}==
<syntaxhighlight lang="text">repeat
repeat
a = randomrandint 20
print a
until print a = 10
until a = 10
print random 20
print arandint 20
.</syntaxhighlight>
.
.</syntaxhighlight>
 
=={{header|Eiffel}}==
Line 2,288 ⟶ 2,290:
write .i, " "
if .i == 10 { writeln(); break }
write random(0..19), " "
}</syntaxhighlight>
 
885

edits