MarusDod / brainfuck

Pretty simple brainfuck interpreter in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

###############################################################

BRAINFUCK

###############################################################

Commands:

-> ">" : increase stack pointer

-> "<" : decrease stack pointer

-> "+" : increment value at current byte

-> "-" : decrement value at current byte

-> "." : output ascii code at current byte

-> "," : ask for input

-> "[" : start of loop

-> "]" : end of loop

To compile: ./brainfuck filename

Example: ./brainfuck hello.bf

hello world!

Use this at your own risk

About

Pretty simple brainfuck interpreter in C


Languages

Language:C 66.9%Language:Brainfuck 33.1%