Skip to content

Latest commit

 

History

History

brainfuck

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Brainfuck 🧠

Brainfuck is an esoteric programming language created in 1993 by Urban Müller. Notable for its extreme minimalism, the language consists of only eight simple commands, a data pointer and an instruction pointer. While it is fully Turing complete, it is not intended for practical use, but to challenge and amuse programmers 1.

Conventions

  • Starting cell index: 0
  • Cell size: 8 bit unsigned
  • Cell overflow: wrapping (customizable)
  • Tape length: 30 000 (customizable)
  • Tape overflow: wrapping (customizable)

Footnotes

  1. Brainfuck