ppl-lang
v1.1.0
Published
A programming language (still in development stage!)
Downloads
38
Readme
What is PPL?
PPL stands for Primitive Programming Language, which is a (not yet Turing-complete) high-level interpreted scripting language with dynamic typing.
How do I use it?
npm install ppl-langOnce 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.
