@jplorg/jpl
Version:
JPL interpreter
35 lines (22 loc) • 632 B
Markdown
```js
import jpl from '@jplorg/jpl';
(async () => {
const inputs = [null];
const results = await jpl.run('"Hello, 🌎!"', inputs);
console.log(...results);
})();
```
The package provides a CLI REPL, which can be used as a language playground.
```sh
> jpl-repl
Welcome to JPL v1.0.0.
Type ":h" for more information.
> "Hello, \('🌎', 'JPL')!"
"Hello, 🌎!", "Hello, JPL!"
>
```
TODO: inform about the runtime API, functions, JPLTypes and different error types