in reply to Calling module function from within a blessed module

Hi,

Since this is an object class:

sub do_more { my $self = shift; return $self->do_something('example'); }

Hope this helps!


The way forward always starts with a minimal test.

Replies are listed 'Best First'.
Re^2: Calling module function from within a blessed module
by Bod (Parson) on Jan 02, 2021 at 15:49 UTC
    Hope this helps!

    That helps tremendously thank you.
    The 'nicer' way is obvious after it has been demonstrated.