in reply to How to generate a unique word or number?

If you're wanting this for a temporary filename, consider using POSIX::tmpnam or IO::File::new_tmpfile.

If you want a unique name for some sort of data entity, consider using Symbol::gensym instead.

  • Comment on Re: How to generate a unique word or number?