I keep getting the same "expected indented block" when ever I run my code.
Code:
from myro import*
init("simulator")
def main():
for x in range(10): #repeats code in loop 10 times
forward(1,1) # go forward for a small distance
backward(1,1) # go backwards the same distance as forward
turnLeft(50,30) # slight turn to vacuum a new area
main()
Comment