Tagged Questions
1
vote
1answer
81 views
How can I export a function with Moose::Exporter?
I wanted to export a simple function from a base class that I use all over my sub classes without having to use $self->myfunc() all the time, just a simple func() call.
I tried doing this with the ...