I have a standalone Perl module that I want to use, however I cannot get 'set lib' to work. What am I doing wrong?
I am working off the terminal in Mac OS and the module is located in a folder on my desktop /Users/John/Desktop/HT/Conlang
.
#! perl -w
package HT::Conlang::S17;
use strict;
use vars qw($VERSION @EXPORT_OK);
use base 'Exporter';
use lib '/Users/John/Desktop/HT/Conlang';
use HT::Conlang::S17;
How can I get this to work?