I'm wondering if its possible to create a pragma just for my module? I've created a module in which every call to "push" is only performed if a verbose option is set. push (@{$self->{output}}, ["chmod:\t$dir"]) if ($self->{verbose});
Is it possible to create this so its just like this ... push (@{$self->{output}}, ["chmod:\t$dir"]); ... but only within my module?