in reply to Re^2: Getting srand's seed
in thread Getting srand's seed

Perl should really be able to return the value of the seed it uses.

No. It's a feature that it doesn't return its seed somehow. The random number generator is there to generate random data, to the extend that this is practical on a deterministic machine.

So it's a feature that the sequence which rand() returns isn't easily reproducible - unless you've taken care to make it so, by first calling srand.