=pod
=for comment
DO NOT EDIT. This Pod was generated by Swim.
=encoding utf8
=head1 NAME
Pegex::Forth - Forth Interpreter with a Pegex Compiler
=for html
=head1 SYNOPSIS
Commandline:
> pegex-forth program.forth
> echo '3 4 + .' | pegex-forth # Print 7
In code:
use Pegex::Forth;
Pegex::Forth->new->run('3 4 + .'); # Print 7
$num = Pegex::Forth->new->run('3 4 +'); # Return 7
=head1 DESCRIPTION
Pegex::Forth is a Forth interpreter engine that uses Pegex to drive it.
=head1 SEE ALSO
=over
=item * L<Pegex>
=back
=head1 AUTHOR
Ingy döt Net <ingy@cpan.org>
=head1 COPYRIGHT AND LICENSE
Copyright 2014. Ingy döt Net.
This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=cut