Help for this page

Select Code to Download


  1. or download this
          my ($x,@y,%z) : Bent = 1;
    
  2. or download this
            use attributes ();
            my ($x,@y,%z);
    ...
            attributes::->import(__PACKAGE__, \@y, 'Bent');
            attributes::->import(__PACKAGE__, \%z, 'Bent');
            ($x,@y,%z) = 1;
    
  3. or download this
          my ($x,@y,%z) : Bent = (@y);