Help for this page

Select Code to Download


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