Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        if ($] < 5.007003) {
            warn "$0 requires Perl v5.7.3 or later.\n";
    ...
            exit;
        }
    }
    
  2. or download this
    BEGIN {
        die "$0 requires Perl v5.7.3 or later.\n" if $] < 5.007003;
        die "Usage: $0 string [string ...]\n" unless @ARGV;
    }