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
- Host: GitHub
- URL: https://github.com/1computer1/strexp
- Owner: 1Computer1
- License: mit
- Created: 2017-08-25T05:56:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T23:41:50.000Z (over 7 years ago)
- Last Synced: 2025-02-17T21:14:12.345Z (3 months ago)
- Language: JavaScript
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- 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.