in reply to dynamic use and missing .dll
#!/usr/bin/perl -w use strict; BEGIN { eval 'require NoneSuch'; die "Hey, you forgot to install NoneSuch!\n\n" if $@; import NoneSuch ("ImportedFunc"); } my $None = NoneSuch->new("foo"); ImportedFunc("bar");
--
flounder
|
|---|