Acme-Brainfuck
view release on metacpan or search on metacpan
cell. Yet it is theoretically capable of performing any computation.
This module will allow you to mix Brainfuck with your perl code.
INSTALLATION
This module should work with any version of perl from 5.005 on up.
However if you are using a version prior to 5.7.0, you will have to
install the Filter::Simple module and dependencies yourself. Newer
versions include this as part of the core.
If you have the Module::Signature module installed, you can verify the
integrity of this distribution by typing:
cpansign -v
Then to install this module type the following:
perl Makefile.PL
make
make test
make install
This file contains message digests of all files listed in MANIFEST,
signed via the Module::Signature module, version 0.35.
To verify the content in this distribution, first make sure you have
Module::Signature installed, then type:
% cpansign -v
It would check each file's integrity, as well as the signature's
validity. If "==> Signature verified OK! <==" is not displayed,
the distribution may already have been compromised, and you should
not run its Makefile.PL or Build.PL.
-----BEGIN PGP SIGNED MESSAGE-----
t/0-signature.t view on Meta::CPAN
use Test::More tests => 1;
SKIP: {
if (!eval { require Module::Signature; 1 }) {
skip("Next time around, consider install Module::Signature, ".
"so you can verify the integrity of this distribution.", 1);
}
elsif (!eval { require Socket; Socket::inet_aton('wwwkeys.pgp.net') }) {
skip("Cannot connect to the keyserver", 1);
}
else {
ok(Module::Signature::verify() == Module::Signature::SIGNATURE_OK()
=> "Valid signature" );
}
}
( run in 0.618 second using v1.01-cache-2.11-cpan-13bb782fe5a )