brainfuck-2048

brainfuck implementation of the well-known 2048 game
git clone https://tongong.net/git/brainfuck-2048.git
Log | Files | Refs | README

README.md (811B)


      1 # brainfuck-2048
      2 
      3 This is a brainfuck implementation of the well-known 2048 game.
      4 
      5 I wrote this without using any transcompilers and maybe I will publish the source code in the future as proof (At the moment it's pretty poorly commented so it wouldn't be of use).
      6 
      7 ## Control
      8 
      9 When the program asks you to do so, you can move the tiles with
     10 
     11 - **w** upwards
     12 
     13 - **a** to the left
     14 
     15 - **s** downwards
     16 
     17 - **d** to the right
     18 
     19 ## Testing
     20 
     21 The program should work on any interactive interpreter (since you need to control the game while it's running). I wrote it for 8-Bit-sized memory, but it may also work on greater sized cells.
     22 
     23 For testing I recommend using these interpreters:
     24 
     25 - [https://mitxela.com/other/brainfuck](https://mitxela.com/other/brainfuck)
     26 - [http://www.bf.doleczek.pl](http://www.bf.doleczek.pl)