MysteriousMan Posted March 4, 2020 Posted March 4, 2020 How can i run a part of my code a certain amount of times then continue on with the rest? Here's what i mean if you are unsure. (i tried next but it just went on without repeating) for $x = 1 to 5 | |;code here | run this part 5 times |???????? |_ ;yadda yadda yadda then run this
Subz Posted March 4, 2020 Posted March 4, 2020 For $i = 1 to 5 ;~ Run this five times ConsoleWrite("Step : " & $i & @CRLF) Next ;~ Next Step here
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now