Обсуждение:Growing Artificial Societies: Social Science From the Bottom Up (Complex Adaptive Systems)
Материал из Поле цифровой дидактики
Версия от 22:28, 30 мая 2023; Patarakin (обсуждение | вклад) (Новая страница: «<source lang="netlogo"> globals [total-population] turtles-own [ food water wealth ] to setup clear-all set total-population 0 ; Code omitted for brevity end to go ask turtles [ move consume-resources reproduce ] tick end ; Code omitted for brevity </source>»)
globals [total-population]
turtles-own [
food
water
wealth
]
to setup
clear-all
set total-population 0
; Code omitted for brevity
end
to go
ask turtles [
move
consume-resources
reproduce
]
tick
end
; Code omitted for brevity