clisp
v0.0.1
Published
Simulator of Common LISP
Downloads
9
Readme
clisp
Simulator of Common LISP
It is useless. But, I hope you feel interested.
Table of contents
Links
Get Started
In CLI:
# Global command "clisp" will be installed.
npm install -g clisp
# Show help info.
clisp ?
# Show available operators.
clisp @
# Run.
clisp + 1 2 3
# OUTPUT: 6
In Node.js:
const clisp = require('clisp');
clisp.plus(1, 2);
// RETURN 3
API
Examples
Read unit tests for more examples.