Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 1.02 KB

README.md

File metadata and controls

17 lines (16 loc) · 1.02 KB

Brainfuck Interpreter

Launching

To run this brainfuck interpreter you need to :

  1. Install Java 14 if it's not already done.
  2. 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

Usage

Running

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.

Errors

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)