Help for this page

Select Code to Download


  1. or download this
    use Foo;
    if (Foo->VERSION() < 1.56) {
    ...
    if ($Foo::VERSION < 1.56) {
        # do something...
    }
    
  2. or download this
    use Foo 1.56 # Die during compiletime if the minimum version is not me
    +t.
    
  3. or download this
    perl -MList::Util -E 'say List::Util->VERSION()'