how to move the turtles together free neighbors without other turtles occupy them
问题 I want to move turtles with a "security distance" from other turtles, for example one patch. this is my code: ask turtles [ let q neighbors with [ (not any? turtles-here) and (not any? other turtles-on neighbors) ] if any? q [ face one-of q move-to patch-ahead 1 ] ] if any? turtles-on neighbors [ ????? ] the start condition is each turtles not have turtles-on neighbors. Also i wish turtles find a new patch to go if turtles-on q or any turtles-on q neighbors, but i have no idea.. i try also