in reply to POE method problem (building applications with POE)

`perldoc diagnostics', `perldoc perldiag'
Can't call method ``%s'' on an undefined value

(F) You used the syntax of a method call,
but the slot filled by the object reference
or package name contains an undefined value.
Something like this will reproduce the error: 
    $BADREF = undef;
    process $BADREF 1,2,3;
    $BADREF->process(1,2,3);

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.

  • Comment on Re: POE method problem (building applications with POE)