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#
- Host: GitHub
- URL: https://github.com/quassbottle/brainfuckdotnet
- Owner: quassbottle
- Created: 2022-07-26T20:48:11.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T21:21:20.000Z (over 3 years ago)
- Last Synced: 2025-04-08T11:48:36.649Z (about 1 year ago)
- Topics: brainfuck, brainfuck-compiler, csharp, csharp-code
- Language: C#
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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");
```