##
use lib do {
# Code that determines the path and returns it.
"/www/domain/cgi-bin"
};
####
sub get_lib_path {
# Code that determines the path and returns it.
return "/www/domain/cgi-bin";
}
use lib get_lib_path();
####
# Hardcoded
use lib "/www/domain/cgi-bin";