in reply to Re: Why should I use Exporter?
in thread Why should I use Exporter?

Since Perl 5.8, the if module is in the core. With it you can write this like
use if $^O =~ /Win/, q(Tricky_Win); use if $^O !~ /Win/, q(Tricky_Linux);

Makeshifts last the longest.