Parrot::Embed - use Parrot from Perl 5


parrot documentation Contained in the parrot distribution.

Index


Code Index:

NAME

Top

Parrot::Embed - use Parrot from Perl 5

VERSION

Top

Version 20081006

SYNOPSIS

Top

  use Parrot::Embed qw(Parrot_revision);

DESCRIPTION

Top

This module embeds libparrot in Perl 5 programs. You can load Parrot bytecode, compile your own code, and call Parrot subroutines and send and receive values to them.

It provides the core implementation used by the Parrot::Interpreter module. Do consider using Parrot::Interpreter first however. See also Parrot::PMC.

This module provides no user-inspectable code.

AUTHOR

Top

chromatic, <chromatic at wgz.org>

BUGS

Top

Please report any bugs or feature requests to the Parrot Porters mailing list. Someday there may be a CPAN version of this code. Who knows?

COPYRIGHT & LICENSE

Top


parrot documentation Contained in the parrot distribution.

package Parrot::Embed;

# $Id: Embed.pm 37377 2009-03-13 08:48:14Z allison $

use strict;
use warnings;

our $VERSION = '20081006';

use base 'DynaLoader';

Parrot::Embed->bootstrap($VERSION);

1;

__END__

# Local Variables:
#   mode: cperl
#   cperl-indent-level: 4
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4: