- or download this
use aliased Foo::Bar::Object;
print ref Object->new();
- or download this
use constant Object => 'Foo::Bar::Object';
print ref Object->new();
- or download this
eval 'use aliased Gemini::Model::Object;';
print ref Object->new();
- or download this
eval qq[use constant Object => 'Foo::Bar::Object';];
print ref Object->new();