Subject: | Can't create driver auto - Can't locate object method "new" |
## In GT terminal will return with "\r\n" at the end of line
## Ex: "Registration" return is "Registration\r\n"
use lib Device::ParallelPort;
$port = "auto:0";
my $ob = Device::ParallelPort->new($port);
$ob->set_bit(3,1);
print $ob->get_bit(3) . "\n";
$int = <STDIN>;