in reply to Re: crypt prototype and ( time ) x 2
in thread crypt prototype and ( time ) x 2

$ perl -wle 'print sub {crypt $_ [0], $_ [0]} -> (time)'
Or, more simply:
$ perl -wle 'print crypt($_, $_) for time;'

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.