Help for this page

Select Code to Download


  1. or download this
      use constant BIRD=>'footchicken';
    
  2. or download this
      { BIRD => 'Valery' }
    
  3. or download this
      { BIRD() => 'Valery' }
      { BIRD, 'Valery' }
    
  4. or download this
      { +BIRD => 'Valery' }
    
  5. or download this
    use strict;
    use warnings;
    use Data::Dumper;
    use constant { BIRD => 'footchicken' };
    print Dumper(+{ +BIRD => 'Valery' });
    
  6. or download this
    $VAR1 = {
              'BIRD' => 'Valery'
            };