BehaviourComposer: ignore everything before this.
This behaviour will make your agent walk around in a circle
Begin micro-behaviour
Walk in circle
Begin NetLogo code:
do-every 1 [ ;; do every time tick
turn-right 15 ;; turn right 15 degrees
go-forward 1 ] ;; move forward 1 field
End NetLogo code
text
text
text
text
BehaviourComposer: ignore everything after this.