Help for this page

Select Code to Download


  1. or download this
    package Gadget;
    
    ...
    } else {
      . . . do something useful here . . .
    }
    
  2. or download this
    if ($g1->is_built($athing_name)) {
    
  3. or download this
    if (Gadget->is_built($athing_name)) {
    
  4. or download this
    sub is_built {   
      my ($class, $name) = @_;
    ...
    
      ...
    }