Sets the seed of the pseudo-random number generator to the integer part of number. The seed may be any integer in the range supported by NetLogo (-9007199254740992 to 9007199254740992).
See the Random Numbers section of the Programming Guide for more details.
random-seed 47823 show random 100 => 57 show random 100 => 91 random-seed 47823 show random 100 => 57 show random 100 => 91
Take me to the full NetLogo Dictionary