An open API service indexing awesome lists of open source software.

https://github.com/quassbottle/brainfuckdotnet

Simple Brainfuck runner written in C#
https://github.com/quassbottle/brainfuckdotnet

brainfuck brainfuck-compiler csharp csharp-code

Last synced: 11 months ago
JSON representation

Simple Brainfuck runner written in C#

Awesome Lists containing this project

README

          

# BrainfuckDotNet
Simple Brainfuck runner written on C# made generally for fun. (.NET Framework 6.0)

# Usage
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.

# Usage in code
```csharp
Brainfuck brainfuck = new Brainfuck();
brainfuck.Run("put your code here");
```