The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Language::Mumps - Perl module to translate Mumps programs to perl scripts

SYNOPSIS

  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

DESCRIPTION

This module compiles Mumps code to Perl code. The API is simillar to MumpsVM.

ENVIRONMENT

Edit ~/.pmumps or /etc/pmumps to set up persistent arrays.

FILES

$BINDIR/pmumps Interpreter
~/.pmumps User configuration
/etc/pmumps.cf Site configuration

AUTHOR

Ariel Brosh.

COPYRIGHT AND LICENSE

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.

SEE ALSO

pmumps, DB_File.