A quick question:
How to set every turtles different colors?
Like, I'd to set the random color whose value ends in *6 or *3 to turtles.
My code:
ask turtles [set color ((random 14) * 10 + 6 ) or ((random 14) * 10 + 3 ))]
But it doesn't work. Since the or
here is wrong.
Is there any other methods express or
here?
I appreciate any kinds of help! Thank you!