Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kulikjak/ELI
Esoteric Language Interpreter
https://github.com/kulikjak/ELI
esoteric-language interpreter
Last synced: 2 months ago
JSON representation
Esoteric Language Interpreter
- Host: GitHub
- URL: https://github.com/kulikjak/ELI
- Owner: kulikjak
- License: mit
- Created: 2017-02-14T12:30:06.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T15:39:29.000Z (almost 8 years ago)
- Last Synced: 2024-04-24T15:35:03.520Z (9 months ago)
- Topics: esoteric-language, interpreter
- Language: C
- Size: 25.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - ELI
README
# ELI
ELI (Esoteric Language Interpreter) is interpreter and transpiler of several simple esoteric languages written in C++. Right now it supports Brainf*ck, Ook! and compressed Ook! language.
* GitHub repo: https://github.com/Kulikjak/ELI### Installation
Download this repository and run `make` to compile Interpreter and Transpiler.
If you want to use only one part of the program, you can also run `make Interpreter` to make only the interpreter part, `make Transpiler` to make only the transpiler.Program does not use any other libraries and so it should be compiled without any problem on any Unix like OS.
### Usage
*Interpreter* can automatically detect given language (and it's not dependent on the file suffix).
*Transpiler* can also detect input language and without any aditional flags it will transpile your input to all supoorted languages. You can specify just one with flags.For more information run the program with `-h` flag (or simply incorrecly ;))
### Example
Interpreter:?> ./Interpreter source.bf
Hello, I am the interpreter.Transpiler:
?> ./Transpiler source.bf
No language was selected - transpiling into all supported languages
Generating Brainfuck code
Generating compressed Ook! code
Generating Ook! code### Author
* Jakub Kulik,