Help for this page

Select Code to Download


  1. or download this
    my @arr = @ARGV || (1, 4, 9, 16);
    # || forces scalar context
    
  2. or download this
    my @args = ( 'p455w0rD', '5a1T' );
    my $crypt = crypt( @args );
    # crypt is prototyped as sub ($$) crypt;