diff --git a/README.md b/README.md index 8b46134..d98ff9e 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![GitHub](https://img.shields.io/github/license/tomhea/flip-jump)](LICENSE) FlipJump is the simplest programing language. -Yet, it can do **any modern computation**. +Yet, it can do **any modern computation**. See the [C -> FlipJump compiler](https://github.com/tomhea/c2fj). It's an Esoteric language ([FlipJump esolangs page](https://esolangs.org/wiki/FlipJump)), with just 1 operation `a;b`: - `not *a; jump b` @@ -240,6 +240,9 @@ Yet, It's very capable. I wrote a [Brainfuck to Flipjump Compiler (bf2fj)](https://github.com/tomhea/bf2fj) to emphasize just that. Brainfuck is indeed Turing complete, and the compiler proves that flipjump can run any program that brainfuck runs (besides those that require an unbounded memory). +A newer project is [c2fj](https://github.com/tomhea/c2fj) - It can compile any C program to FlipJump. +Take a look at the [prime numbers c program](https://github.com/tomhea/c2fj/blob/main/tests/programs/primes/main.c) that can be compiled to fj just as is. + # Contribute If you want to contribute to this project, read the [CONTRIBUTING.md](CONTRIBUTING.md) file, and take a look at the [I-Want-To-Contribute Thread](https://github.com/tomhea/flip-jump/discussions/148). diff --git a/pyproject.toml b/pyproject.toml index 541db54..fae0e01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "flipjump" -version = "1.2.2" +version = "1.3.0" description = "The single instruction language - Flip a bit, then Jump" authors = ["Tom Herman "] license = "BSD-2-Clause-Simplified"