Help for this page

Select Code to Download


  1. or download this
    BEGIN{
    # UPDATE: Corrected typo pointed out my [Abigail-II] below.
    ...
                    ? '/foo/custom/perl/lib/Custom_mods5.6.1'
                    : '/foo/custom/perl/lib/Custom_mods5.005_03';
    }
    
  2. or download this
    BEGIN{
        use lib $^O =~ m[^(?:MSWin32|solaris)$]i
                    ? '/foo/custom/perl/lib/Custom_mods5.6.1'
                    : '/foo/custom/perl/lib/Custom_mods5.005_';
    }