Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    
  2. or download this
    BEGIN {
       $] >= 5.010
    ...
    }
    
    use feature qw( :5.10 );
    
  3. or download this
    BEGIN {
       $] >= 5.010
    ...
    }
    
    use feature qw( array_base say state switch );