BF-RLE
From Esolang
BF-RLE is a proposed mechanism for encoding Brainfuck with a Run-length encoding
[edit] Base 62
BF-RLE uses a base 62 numbering system. The digits go from 0-9, A-Z, a-z.
[edit] Brainfuck to BF-RLE
- Strip all comments, including whitespace
- Replace each run of characters greater than 2 with the character then the number of times it appears minus 3 (e.g.
+++turns into+0).
BF-RLE has nothing to do with either BF-PDA or BF-SC.
[edit] External links
- BF to BF-RLE is a script to convert Brainfuck to BF-RLE

