Beispiel #1
0
        public void BrainfuckInterpreter_HelloWorld()
        {
            var interpreter = new BrainfuckInterpreter(BrainfuckExamples.BrainfuckExamples.HelloWorld);

            interpreter.Parse();
            interpreter.Run();

            Assert.Equal("Hello World!\n", _stringWriter.ToString());
        }
Beispiel #2
0
        public void BrainfuckInterpreter_SimpleAddNumbersOutput()
        {
            var interpreter = new BrainfuckInterpreter(BrainfuckExamples.BrainfuckExamples.SimpleAddNumbersOutput);

            interpreter.Parse();
            interpreter.Run();

            Assert.Equal("7", _stringWriter.ToString());
        }
        private static void Main()
        {
            var interpreter = new BrainfuckInterpreter(BrainfuckExamples.BrainfuckExamples.HelloWorld);

            interpreter.Parse();
            interpreter.Run();

            Console.ReadKey();
        }