Skip to content
This repository has been archived by the owner on Jun 10, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 402 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 402 Bytes

bfuck

bfuck is a simple brainfuck interpreter.

Compilation

The program requires a C compiler and cmake.

The compilation compilation of the program can be performed in the root directory:

cmake -S. -Bbuild
cd build
make

The program can be installed using this command:

make install

Note that you may be required to execute this command as a superuser