Loops/Do-while: Difference between revisions

m
Added Dyalect
m (→‎{{header|Modula-2}}: "Each time through the loop, add 1 to the value _then_ print it.")
m (Added Dyalect)
Line 860:
</lang>
'''Bold text'''
 
=={{header|Dyalect}}==
 
<lang dyalect>var x = 0
 
do
{
x += 1
print(x)
} while x % 6 != 0</lang>
 
=={{header|E}}==
Anonymous user