Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tomhea/fji-cpp
super fast c++ FlipJump interpreter
https://github.com/tomhea/fji-cpp
cpp esolang esoteric-interpreter esoteric-language esoteric-programming-language flip-jump interpreter
Last synced: 25 days ago
JSON representation
super fast c++ FlipJump interpreter
- Host: GitHub
- URL: https://github.com/tomhea/fji-cpp
- Owner: tomhea
- License: bsd-2-clause
- Created: 2022-08-14T18:25:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-20T14:11:13.000Z (over 2 years ago)
- Last Synced: 2024-11-06T21:11:37.589Z (2 months ago)
- Topics: cpp, esolang, esoteric-interpreter, esoteric-language, esoteric-programming-language, flip-jump, interpreter
- Language: C++
- Homepage:
- Size: 1.52 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# FlipJump C++ Interpreter
This project is a very fast [FlipJump](https://github.com/tomhea/flip-jump) interpreter, and supports the 0,1,2 fjm versions.
FlipJump is the simplest programing language.
Yet, it can do **any modern computation**.It's an Esoteric language ([FlipJump esolangs page](https://esolangs.org/wiki/FlipJump)), with just 1 operation `a;b`:
- `not *a; jump b`Which means - **Flip** a bit, then **Jump**.
# How to run
Simply compile and run:
```bash
>>> fji hello.fjm -s
Hello, World!
```- The -s flag is used to not print times and running-statistics.
# Read More
To read more about FlipJump:
- The [FlipJump Project](https://github.com/tomhea/flip-jump)
- The [FlipJump esolangs page](https://esolangs.org/wiki/FlipJump)