BrainF*ck

Source

STDOUT

STDIN


hello.b - [Try this programm.]
>+++++++++[<++++++++>-]<.>+++++++[<++++>-]<+.+++++++..+++.[-]>++++++++[<++++>-]
<.>+++++++++++[<+++++>-]<.>++++++++[<+++>-]<.+++.------.--------.[-]>++++++++[
<++++>-]<+.[-]++++++++++.

Language reference

>Increment the pointer.
<Decrement the pointer.
+Increment the byte at the pointer.
-Decrement the byte at the pointer.
.Output the byte at the pointer.
,Input a byte and store it in the byte at the pointer.
[Jump past the matching ] if the byte at the pointer is zero.
]Jump to the matching [.
#Debug print

CHANGELOG/BUGS/TODO

[22 Feb 2003]
[UPDATE] Support # command !!
[21 Feb 2003]
[UPDATE] - Changed bfi.js tobe OOP style.
[20 Feb 2003]
[TODO] - Implement `,' command.
[BUGS] - Check the numbers of steps for preventing infinity loops.
[BUGS] - There is no limit of memory size.

Resource


$Id: index.html,v 1.6 2003/02/22 12:02:17 ikkei Exp $