Added proper README
Getty Ritter
9 years ago
1 | A simple Befunge-98 interpreter, designed according to the description | |
2 | of the language found on the | |
3 | [Esolang wiki article](http://esolangs.org/wiki/Befunge) about the | |
4 | language. | |
5 | ||
6 | Befunge is a language whose source is a two-dimensional grid of characters, | |
7 | where the instruction pointer refers to a location within this | |
8 | two-dimensional grid. Execution maintains a stack, so the characters on | |
9 | the grid can modify the stack of values as well as change the direction of | |
10 | control flow on the grid. | |
11 | ||
12 | The sample programs included in this repo are drawn directly from the | |
13 | list of | |
14 | [sample programs on the Esolang page](http://esolangs.org/wiki/Befunge#Examples). |