brainhug 0.7.0

A simple brainf*ck translator
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// C# file compiled from Brainf*ck by brainhug [https://github.com/sn99/brainhug]

using System;

public static class BrainHug
{
    public static void Main(string[] args)
    {
        char[] tape = new char[20000];
        uint index = 0;