The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Acme::Perl::VM::JA - An implementation of Perl5 Virtual Machine in Pure Perl (APVM)

SYNOPSIS

        use Acme::Perl::VM;

        run_block{
                print "Hello, APVM world!\n";
        }

DESCRIPTION

Amce::Perl::VMはPure Perlで実装されたPerl5の仮想マシンです。

このモジュールの詳細は2009年4月22日に開催されるShibuya.pm テクニカルトーク#11で解説される予定です。

AUTHOR

Goro Fuji (gfx) <gfuji(at)cpan.org>.

SEE ALSO

pp.h for PUSH/POP macros.

pp.c, pp_ctl.c, and pp_hot.c for ppcodes.

op.h for opcodes.

cop.h for COP and context blocks.

scope.h and scope.c for scope stacks.

pad.h and pad.c for pad variables.

run.c for runops.

LICENSE AND COPYRIGHT

Copyright (c) 2009, Goro Fuji (gfx). Some rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.