Prog1Python/00_Reeborg/solutions/Kreidefelsen.py

14 lines
359 B
Python
Raw Normal View History

2024-07-11 19:07:13 +02:00
from library import turn_right
while wall_on_right():
move()
turn_left()
turn_left()
move()
################################################################
# WARNING: Do not change this comment.
# Library Code is below.
################################################################
def turn_right():
for _ in range(3):
turn_left()