sub new() { my $self={}; $self->{FORM_VAR}=undef; bless($self); return $self; } #### sub new { my $class = shift; my $self = {}; # some initialisation bless($self, $class); return $self; } #### my $obj = main->new();
## sub new { my $class = shift; my $self = {}; # some initialisation bless($self, $class); return $self; } ##
## my $obj = main->new();