Jump to content

Loops/Downward for: Difference between revisions

(using 'range')
Line 316:
Alternatively, the range operator might be used as well which simply returns a contiguous range of integers:
<lang powershell>10..0</lang>
 
=={{header|PureBasic}}==
<lang PureBasic>For i=10 To 0 Step -1
Debug i
Next</lang>
 
=={{header|Python}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.