Skip to content

An interpreter for the Brainfuck programming language.

License

Notifications You must be signed in to change notification settings

parasharsangeet/bf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Brainfuck

An interpreter for the Brainfuck programming language

Installation

1. Clone the source

$ git clone https://github.com/acidicity/bf.git
$ cd bf

2. Building the project

This project uses CMake as the build system. You can install it from here.

$ mkdir build && cd build
$ cmake ..
$ cmake --build . --config Release

This binary will be generated inside the bin folder in the project root.

3. Testing the executable

There is a hello world example in the examples/ folder. You can test the executable by running the hello world example.

On Windows,

$ .\bin\Release\bf.exe .\examples\hello_world.bf

On Unix,

$ ./bin/Release/bf ./examples/hello_world.bf

If everything worked out successfully, you should be able to see the "Hello, World!" message printed to the console.

About

An interpreter for the Brainfuck programming language.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published