Acme-Perl-VM

 view release on metacpan or  search on metacpan

example/methcall.pl  view on Meta::CPAN

#!perl -w
use strict;
use FindBin qw($Bin);
use lib "$Bin/../lib";

use Acme::Perl::VM;

sub Foo::hello{
    my(undef, $s) = @_;

    print "Hello, $s world!\n";
}

run_block {
    Foo->hello("Acme::Perl::VM");
    Foo->hello("APVM");
};



( run in 0.867 second using v1.01-cache-2.11-cpan-f56aa216473 )