This commit is contained in:
Sem van der Hoeven
2019-12-02 22:42:34 +01:00
parent 4be93f3404
commit 19c07d7409
9 changed files with 179 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
package brainfuck.interpreter;
import java.io.UnsupportedEncodingException;
/**
* Main
*/
public class Main {
public static void main(String[] args) {
String excl = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++.>++++++++++++++++++++++++++++++++++++++++++++++++++++.";
try {
BfInterpreter interpreter = new BfInterpreter(excl);
interpreter.interpret();
} catch (Exception e) {
e.printStackTrace();
}
}
}