#turn right and start moving counterclockwise
right()
while look_below() != 'star':
while look_ahead() != 'wall':
forward()
In this maze we need to run until facing the wall and then turn left.
Though simple, this task will prepare us for further challenges!