0

だから私はこの現在のセットアップを持っています

 ask turtles [                               ;i want this turtle (myself)
    ask other turtles [                      ;to ask other turtle, one by one (self)
      if Smin < Sim myself self [            ;to run a function wherein 
       ifelse Sim myself self < Smax         ;if Smin < Sim myself self < Smax
       [ ;if block ]                         ;self will be assigned to the variable
       [ ;else block ]                       ;of myself called 'Ac'
      ]
    ]
  ]

これどうやってするの?

4

1 に答える 1