Being an ex-Smalltalk programmer, I've been thinking about
something like this for quite some time. It's definitely
a good idea, and you're off to a great start.
One question, though, is there any particular reason you created your
new syntax:
PACKAGE:
Goe::Browser
INHERIT:
Goe::Object
USES:
Goe::Browser::UI Goe::Browser::Events
METHOD initialize
instead of using standard Perl like so:
package Goe::Browser;
use base qw(Goe::Object);
use Goe::Browser::UI;
use Goe::Browser::Events;
sub initialize
Or, is being able to handle standard Perl package/subroutine syntax up-and-coming
in the next version? =)