#turn right or left after picking each star
#depending on whether there is a wall ahead
while look_ahead() != 'out':
if look_below() == 'star':
pick()
if look_ahead() == 'wall':
left()
else:
right()
forward()
#fix this code to pick everything!