My question is simple and maybe the solution too ... I am learning Perl, I know how python works, in python to import a library is simple, import is used, but for Perl ... how is it?
My question is simple and maybe the solution too ... I am learning Perl, I know how python works, in python to import a library is simple, import is used, but for Perl ... how is it?
In Perl, use is used. Example:
#hola.pl
use warnings;
use strict;
use AlgunaLibreria;
print "Hola\n";