in reply to Re: use depending on environment
in thread use depending on environment

Does that really work? Since use is compile time, this will error out even if the condition isn't met:
#!/usr/bin/perl -w use strict; BEGIN { if (0) { use Non_existant_module; } }