Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)