now i have the next problem. Suppose i have a list with diferent numbers for example :
let mylist [3 7 12 24 32 54 21 19]
And i want to use this list of numbers like the who of turtles. More accurately , i want that only the turtles that his who is equal to of any of the numbers of the list, do a procedure. I tried to applying directly the "with" command like this: ask turtles with [who = mylist] but is not working and i think that the problem is that i am working with a list not a specific value. Any suggestions?