This class allows to have an embedded perl interpreter in you program.
With this interpreter, you can "execute" any line as you would
do in some perl script, even lines such as "use strict;" or
"use somepackage", lines with "require" (in perlfunc) and "do"
(in perlfunc to include external Perl files). See tutorial/perl for use examples.
Compilation process needs perl developpement to be installed
(libperl-dev package on Debian). Compile options for the C
compiler are determined with command 'perl -MExtUtils::Embed -e ccopts'
and linker option with command 'perl -MExtUtils::Embed -e ldopts'
Perl 5.6.0 or above is required.
Note that current release does not allow to have multiple
interpreters running, so this class is a singleton. If you need
multiple interpreters, documentation is available in manual
perlembed (provided in standard perl documentation and
available on the net). Please contribute and send your changes!