To run this brainfuck interpreter you need to :
- Install Java 14 if it's not already done.
- Execute .jar file with the Java Virtual Machine (normally, the Java installation sets by default launch of JAR files with JVM*).
JVM : Java Virtual Machine
To execute brainfuck code you have to write it in the 'Code' text area and type input in the 'Input' text area, then click on the 'Run' button, after that if any error occures, it summary will be displayed in the 'Output', else, in case of successful running, output will be printed in corresponding text area.
Here are some errors you can get while running code :
Explanation | Error text |
---|---|
Invalid use of loops operators | Opening not closed loops or closing not opened loops |
Invalid input ! Only ASCII characters permitted | Not ASCII characters present in input text |
Invalid output ! Only ASCII characters permitted | Not ASCII characters present in output text (wrong code) |