discord test stars

About

A Brainfuck interpreter in the Mys programming language.

Project: https://github.com/mys-lang/package-brainfuck

Installation

 mys install brainfuck

Running Brainfuck programs

There are Brainfuck programs in the programs folder.

Hello World

 wget https://raw.githubusercontent.com/mys-lang/package-brainfuck/main/programs/hello_world.bf
 brainfuck hello_world.bf
Hello World!

A tiny OS

 wget https://raw.githubusercontent.com/mys-lang/package-brainfuck/main/programs/os.bf
 brainfuck os.bf
STARTING
BRAINOS VER 1
A FOR HELP
OS>A
A > HELP
B > CHARCODE
Z > HALT
OS>B
ENTER CHAR
>1
31
OS>Z
HALTING

API

func execute(program: string):
    Execute given program.