  SEED

   SEED x

   Type: statement

   Seeds the random number generator with some value. After that,
   subsequent usages of RND and RANDOM will return numbers in a random
   order. Note that seeding the random number generator with the same
   number also will result in the same sequence of random numbers.

   By default, a BaCon program will automatically seed the random number
   generator as soon as it is executed, so it may not be needed to use this
   function explicitly. Example:

   SEED NOW

