Wednesday, December 1, 2010

Solution :called too early to check prototype at in Perl

one of the way shis can happen if

you have declared function as

sub fun()
{

}


In perl you should declare function as

sub fun
{

}


- mihir patel