Hello, I have this Karel program that makes the robot to move in a certain way. When I hit start the program runs just once then stops. Does anybody know what to add to the program so it can run more than once or do an infinite loop? Thank you.
1. PROGRAM MAINT
2. var maint_move : path
3. routine maint_exe
4. BEGIN
5. $UTOOL = POS(-104,-9.5,291,0,0,0,'N')
6. MOVE ALONG MAINT_MOVE
7. end maint_exe
8. begin
9. maint_exe
10. END MAINT