Help for this page

Select Code to Download


  1. or download this
    # note that versions prior to 5.6.0 require the numeric
    # representation of the version number and don't recognize
    # v5.6.0 or 5.6.0, for example.
    
    BEGIN { require 5.006_00 }
    
  2. or download this
    $ perl553 -e 'BEGIN{require 5.006_00}; use warnings;'
    Perl 5.006 required--this is only version 5.00503, stopped at -e line 
    +1.
    BEGIN failed--compilation aborted at -e line 1.
    
  3. or download this
    use 5.006_00;