given this new function which acts as a constructor


sub new {

        my $invocant = shift;
        my $class = ref($invocant) || $invocant;
        my $self = {
                Level => 999,
                Value => 999,
                Key => 999,
                @Next,
                @_,
        };
        return bless $self,$class;

}

I am getting the following error:
"Global symbol @Next requires explicit package name at c:\...."

What does this mean?

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com

Reply via email to