Anyways, is there a way to program a robot to run a loop specific number of times?
Something like the below to get it to run a string of commands some number of times.
- Code: Select all
while( x = x+1 < 4 true) {
}
Moderators: roger, 99jonathan, imaqine
while( x = x+1 < 4 true) {
}for (int x=0; x<4; x++) {
// this is executed 4 times
}Users browsing this forum: No registered users and 2 guests