Help for this page

Select Code to Download


  1. or download this
    use v5.10;
    
  2. or download this
    Version string used at line 5, column 1.
      ValuesAndExpressions::ProhibitVersionStrings (Severity: 3)
    ...
            use Foo v1.2    qw(foo bar);  # not ok
            use Foo 1.2.03  qw(foo bar);  # not ok
            use Foo 1.00203 qw(foo bar);  # ok
    
  3. or download this
    use 5.10;
    
  4. or download this
    Perl v5.100.0 required (did you mean v5.10.0?)--this is only v5.16.0, 
    +stopped at /path/to/module.pm line 5.
    
  5. or download this
    use 5.10.0;