PPL stands for Primitive Programming Language, which is a (not yet Turing-complete) high-level interpreted scripting language with dynamic typing.
npm install ppl-lang
Once you have installed it, you can run any program like this:
const ppl = require('ppl-lang');
ppl.run(`printLine(3 + 5 * 4)`);
This outputs 23
.
Documentation coming soon.