Befunge-93

The language where your code literally goes in all directions.

Key Concepts

Common Instructions

CharMeaning
>IP right
<IP left
^IP up
vIP down
+,-,*,/,%Arithmetic on stack
_Pop value; IP left if non-zero else right
|Pop value; IP up if non-zero else down
@End program

Using the Runner

Self-modifying behaviour is fully supported by writing into the grid with the p/g instructions. Peek at games/js/demos.js for implementation details.

← Back to gallery