Brainf*ck#

// The Brainf*ck language This language is easy to understand but difficult to use. Every program starts with an array of caracters (16 bit values in this app) that has every cell set to 0, and a pointer on the first cell. You can move the pointer back and forth with the < and > operators and increment and decrement the value of the cell that is actually pointed with + and -. The operator . prints the Unicode char corresponding to the value of the cell that is pointed, and the , operator assigns to the actual cell the value of the first character in the Stdin buffer. You can also create loops with [ and ]. The loop starts if the value of the current cell is greater than 0, and ends if the cell that is pointed at the end of it is 0. If the source code contains characters that are not the Brainf*ck operators, they are ignored by the interpreter, so you can write your comments inside the code without any problems.

  • 1 Videos
  • 0 Followers
  • 0 Like
Videos Uploaded
Apps Liked
No any apps like!
Followers
No any user followers!