1a46bc1218
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
18 lines
258 B
Perl
Executable file
18 lines
258 B
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
|
|
use warnings;
|
|
use strict;
|
|
|
|
use ILS::Patron;
|
|
use Data::Dumper;
|
|
|
|
while (1) {
|
|
print "Enter patron barcode: ";
|
|
my $in = <>;
|
|
defined($in) or last;
|
|
chomp($in);
|
|
last unless $in;
|
|
my $patron = ILS::Patron->new($in);
|
|
print Dumper($patron);
|
|
}
|