from Control import *
control = Control()

# Assuming the ball is to the left, turn left and move forward
for i in range(5):
    control.turnLeft()
control.stop()

for i in range(5):
    control.forWard()
control.stop()
