Reports a list containing the given items. The items can be of any type, produced by any kind of reporter.
show list (random 10) (random 10) => [4 9] ;; or similar list show (list 5) => [5] show (list (random 10) 1 2 3 (random 10)) => [4 1 2 3 9] ;; or similar list
Take me to the full NetLogo Dictionary