[Chicago-talk] InsideOut Objects

Jay Strauss me at heyjay.com
Thu Jan 19 17:19:49 PST 2006


Why does Randal say:

=comment
Congratulations on not duplicating the mistake that that both 
Object::InsideOut and Class::Std made in the documentation, namely:  
package Foo::Bar; {
  ...
}

 Which should have been 
{
  package Foo::Bar;
  ...
}

Too many people thinking of Perl6 already. Yes, I've reported it, but been 
ignored apparently.

in http://www.perlmonks.org/?node_id=522007

=cut

I'd think it would be:

package Foo::Bar;
{
   use Object::InsideOut;
   # all my object setup stuff
}

sub other_method {

}
1;


thanks
Jay


More information about the Chicago-talk mailing list