Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
              'int' => 'float',
              'brown' => 'yellow'
            };
    
  2. or download this
    my %dict = (
        'brown'      => 'yellow',
        qr/int(\d+)/   => 'int',
        qr/float(\d+)/ => 'float',
    );
    
  3. or download this
    use strict;
    
    ...
    }
    
    print "$test\n";