| Language-Mumps documentation | view source | Contained in the Language-Mumps distribution. |
Language::Mumps - Perl module to translate Mumps programs to perl scripts
use Language::Mumps;
$pcode = Language::Mumps::compile(qq{\tw "Hello world!",!\n\th});
eval $pcode;
Language::Mumps::evaluate(qq{\ts x=1 w x});
Language::Mumps::interprete("example.mps");
Mumps:translate("example.mps", "example.pl");
prompt % perl example.pl
This module compiles Mumps code to Perl code. The API is simillar to MumpsVM.
Edit ~/.pmumps or /etc/pmumps to set up persistent arrays.
Ariel Brosh.
Copyright 2000, Ariel Brosh.
Maintained by Steffen Mueller
Usage of this module is free, including commercial use, enterprise and legacy use. However, any modifications should be notified to the maintainer.
pmumps, DB_File.
| Language-Mumps documentation | view source | Contained in the Language-Mumps distribution. |