Simple Brainfuck runner written on C# made generally for fun. (.NET Framework 6.0)
To use it you have to run it using dotnet run
command.
You can simply type the code into the console or specify the path of the file that contains the brainfuck code using the --path
parameter.
Brainfuck brainfuck = new Brainfuck();
brainfuck.Run("put your code here");