in reply to feedback on successful module loading
#!/opt/bin/perl -w print "running $0 in Perl $]\n"; my $result = eval "use CGI; 1"; if ($result) { print "CGI loaded\n"; } else { print "CGI failed\n"; } print "$@\n"; my $result = eval "use HTML::Template; 1"; if ($result) { print "Tmplt loaded\n"; } else { print "Tmplt failed\n"; } print "$@\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
•Re^2: feedback on successful module loading
by merlyn (Sage) on Oct 07, 2004 at 21:22 UTC | |
|
Re^2: feedback on successful module loading
by diotalevi (Canon) on Oct 07, 2004 at 22:34 UTC | |
by ggg (Scribe) on Oct 08, 2004 at 05:17 UTC |