Execute Brain****/Java: Difference between revisions

Content added Content deleted
No edit summary
m (Added a bit more description.)
Line 2: Line 2:
In this implementation of [[Brainf***]], the code is read in all at once and checked for uneven brackets (unequal amounts of [ and ] commands). If that error occurs, the code will obviously not be run.
In this implementation of [[Brainf***]], the code is read in all at once and checked for uneven brackets (unequal amounts of [ and ] commands). If that error occurs, the code will obviously not be run.


Under the hood, the program memory is an ArrayList of Integers which expands only to the right. So, if the pointer moves past zero to the left, the program will exit. Due to the BufferedReader input class, return characters (ASCII 10 and 13) are ignored on input (the , command). More detailed information can be found in the comments scattered about the code.
Under the hood, the program memory is an ArrayList of Integers which expands only to the right. So, if the pointer moves past zero to the left, the program will exit and a "Pointer out of range" error message will be displayed. Due to the BufferedReader input class, return characters ([http://www.asciitable.com ASCII] 10 and 13) are ignored on input (the , command). Return characters are not ignored on output (the . command). More detailed information can be found in the comments scattered about the code.


import java.io.BufferedReader;
import java.io.BufferedReader;