An open API service indexing awesome lists of open source software.

https://github.com/1computer1/strexp

An esolang without numbers
https://github.com/1computer1/strexp

Last synced: about 2 months ago
JSON representation

An esolang without numbers

Awesome Lists containing this project

README

        

# Strexp

An esoteric language without numbers.
Why? For the fun of it!

Inspired by the [REGEXPL](http://zuu.dk/index.php?page=regexpl) esolang.

## Usage

#### Installation

`$ npm i -g 1computer1/strexp`
Requires Node 8 to use.

#### CLI

`$ strexp path/to/file.str`
`$ strexp -c "@print('code here');"`

#### JavaScript

```js
const strexp = require('strexp');
strexp.runFile('path/to/file.str');
strexp.runCode('@print("code here");');
```

## Documentation

See the documentation (unfinished) [here](./docs/README.md).
See test folder or src/stdlib for code examples.