Is there a way to have a For loop count down from say 100 to 0?
Thanks!
Is there a way to have a For loop count down from say 100 to 0?
Thanks!
Simba Code:For I:= 100 downto 0 do
For I:= High(Meh) downto 0 do
//Etc..
I am Ggzz..
Hackintosher
Use downto.
Simba Code:for i := 100 downto 0 do
Writeln(i);
Edit:'d.
Join the IRC! irc.rizon.net:6667/srl | SQLite (0.99rc3+) | SRL Doc | Simba Doc | Extra Simba Libraries (openSSL & sqlite3)
Originally Posted by #srl
"A programmer is just a tool which converts caffeine into code"
Thank you muchly sir!
There are currently 1 users browsing this thread. (0 members and 1 guests)