#let us drive to nearest border
#and print what 'look_ahead()' returns!
forward()
left()
forward()
print(look_ahead())
#when we have found the necessary info
#let us remove all the spying code above
#and fix the code below to reach the border
#then turn right and reach the star
while look_ahead() != 'wall':
forward()
print('Turning at the border!')
right()
while look_ahead() != 'wall':
forward()
print('Corner was reached!')
pick()
#hint replace the 'wall' with the word we have spied!