Help for this page

Select Code to Download


  1. or download this
    use Useful::For qw[ ForRange ];
    
    ForRange \my $i, 1, 10, {
        print $$i;
    }
    
  2. or download this
    use Useful::For qw[ ForRange ];
    use UseFul::If;
    use UseFul::While;
     ...
    
  3. or download this
    use Useful;
    Use qw[ For If While ];
    ...
    
  4. or download this
    use Useful;
    Useful {
    ...
       If    => qw[ :all ],
       While => qw[ :all ],
    };
    
  5. or download this
    use Perl qw[ :all ];