Help for this page

Select Code to Download


  1. or download this
    if(exists $INC{'Example/Module.pm'}) {...}
    
  2. or download this
    if (__PACKAGE__->can('example')) {...}
    
  3. or download this
    package SomeThing;
    
    ...
    use SomeThing;
    
    foo();