Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.36 KB

README.md

File metadata and controls

47 lines (28 loc) · 1.36 KB

brainfuck et al. for Try It Online

This is a collection of simple transpilers for the Try It Online family of online interpreters.

Currently available:

  • brainfuck

    Implemented with a wrapping tape of 65,536 8-bit cells.

  • Alphuck

    Transpiles to brainfuck.

  • brainbool

    Implemented with a wrapping tape of 65,536 8-bit cells. Input characters unequal to 1 are treated as 0. Use -b for raw byte input, -B for raw byte output.

  • oOo CODE

    Implemented with a wrapping tape of 65,536 8-bit cells.

  • tinyBF

    Implemented with a wrapping tape of 65,536 8-bit cells.

  • Random Brainfuck

    Implemented with a wrapping tape of 65,536 8-bit cells. Uses a cryptographically secure PRNG.

  • Brainlove

    Implemented with a wrapping tape of 65,536 8-bit cells.

  • Extended Brainfuck Type I

    Implemented with a wrapping tape of 65,536 8-bit cells.