A Brainfuck interpreter written in F# with REPL and comprehensive testing.
# Interactive REPL mode
dotnet run# Execute Brainfuck code directly
dotnet run "+++++++++[>++++++++<-]>.+.+.+." # HIJK
# With input
dotnet run ",." "Hello" # Hmake build # Build project
make test # Run tests
make publish # Create cross-platform releases| Command | Description |
|---|---|
> < |
Move pointer |
+ - |
Increment/decrement cell |
. , |
Output/input character |
[ ] |
Loop control |

