775a12f591a8bd9dbfa46f56c877c1bc3449f3ba
Frick.NET
What is this?
This is a simple Brainfuck interpreter written in .NET. It's not the first, certainly not the best, but it's mine.
Why?
I was bored.
How do I use it?
You can use Frick.NET in two ways: consume it as a class library or use the CLI.
Using the class library:
using Frick.NET;
string source = "<your Brainfuck code goes here>";
FrickInterpreter interpreter = new();
interpreter.Run(source);
Using the CLI:
- Build the CLI from source or download it from the Releases tab.
- You can pass Brainfuck code in the following ways:
- Pass a file name as an argument:
frick-cli -i <FILENAME> - Pass a file's content piped from STDIN:
'<Brainfuck goes here>' > frick-cli - Run
frick-cliwithout any arguments and enter the code using the terminal
- Pass a file name as an argument:
Description
Languages
C#
100%