Help for this page

Select Code to Download


  1. or download this
    sub fooge_default
    {
    ...
    
      $self->fooge(@_);  # Blind parameter passing
    }
    
  2. or download this
    sub fooge_default
    {
    ...
    
      goto &$self->fooge;  # Not entirely sure of the syntax
    }
    
  3. or download this
    sub fooge
    {
    ...
    
      # ...
    }