📜  bainfuck - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:21.734000             🧑  作者: Mango

代码示例1
Brainfuck chars:
    <        move one cell to the left
    >        move one cell to the right
    +        increase value in current cell by one
    -        decrease value in current cell by one
    []        start loop, loop finishes when starting cell is = 0
    ,        Accepts one letter of input (stores as ascii number)
    .        Prints one leter (uses ascii code)

Good luck