Help for this page
sub new { ... # bless ($self); # AHA! How could I have missed that one! +Thanks go to [bronto] for pointing that out. No need to bless the thi +ng twice.. one time is enough already! ;> return $self; }
sub start { my $self = shift; # Get 'reference' to the class instance (aka obje +ct)! ... open($self->{filehandle}, " . . . "); # . . . Rest of your code . . . }
# Under Construction