parse

parse

Synopsis: parse( script )

This is used to parse a script in @INC by using
the perl do command. The only differnce is that
parse will print an error if perl reports errors
during do. So this is the recommended way to
load your scripts.

Example:
	parse("myscript.pl");

	statusWindow->print(@INC."\n"); 
	# to show the include path


KDE Logo