srandom - sets the seed for subsequent oadl::random() calls
oadl::srandom([seed])
The srandom() function sets the seed for the
pseudo-random number generator used by random().
If the seed argument is provided, it must be an integer. If
seed is omitted, the current system time is used as the seed.
Returns nil.
ArgCheck if more than one argument is passed.
TypeCheck if seed is provided but is
not an Int or Long.
oadl::srandom(1234)
oadl::random()
.740877
oadl::srandom(1234)
oadl::random()
.740877