Files
BrainFuck/examples/2468-commented.bf
2010-10-21 22:03:56 +02:00

14 lines
316 B
Beef
Executable File

This brainfuck program prints the following
suits on the screen : 2468
++++ the number of number to print
[
> Move to the accumulator cell
++ Add two to the accumulator
which leads to the multiplication
of the loop counter
. Print the accumulator
<- move back to the loop counter and
decrement it
]