in reply to Class::Tiny and Exporter at the same time

The Exporter::import gets called when you run use Exporter , Class::Tiny::import gets called when you run use Class::Tiny . The former makes it possible to export the constants from your module (which happens when AReport::import is run, i.e. on use AReport ), the latter generates the accessors in your class.

($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Replies are listed 'Best First'.
Re^2: Class::Tiny and Exporter at the same time
by jaandy (Acolyte) on Nov 13, 2016 at 18:00 UTC

    Ahh! Now I understand. Thank you both very much.

    -Andy