https://github.com/1computer1/strexp
An esolang without numbers
https://github.com/1computer1/strexp
Last synced: 5 months ago
JSON representation
An esolang without numbers
- Host: GitHub
- URL: https://github.com/1computer1/strexp
- Owner: 1Computer1
- License: mit
- Created: 2017-08-25T05:56:12.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T23:41:50.000Z (over 8 years ago)
- Last Synced: 2025-07-08T11:05:31.336Z (7 months ago)
- Language: JavaScript
- Size: 75.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.