What a fun Friday night I had.

Do you recognize the language in the screenshot below?

The file extension may give you a clue.

Screenshot of Befunge code converting input string to uppercase.
Befunge code example.

Befunge! I have never used it before and what a fun language it is. It is a two-dimensional language, so the program is laid out on a 2D playfield of fixed size. The code can go in four directions, and you can change the direction using the >, <, v, and ^ operators.

For example, this is an infinite loop:

>v
^<

Each character in the field is an instruction.

The program on the screenshot is my quick exercise (yes, I wrote it, and Iā€™m proud of it). It converts an input string to uppercase.

The first thing that might confuse you are the digits. What do they mean? Theyā€™re just ASCII characters. 55+ means 5+5, or 10 (this is postfix notation, similar to Forth). So 55+ pushes 10 (ASCII code for a newline character \n) to the stack, and we use it to check if we have reached the end of the input string. Same with the digits on line 2: 99*35*+ in postfix notation means (9*9)+(3*5), or 96, and we need it to compare a given character with 'a' (code 97).

The | instruction is Befungeā€™s conditional statement. It moves the instruction pointer up or down depending on the current top stack value.

If you want to spend an evening with Befunge, Iā€™d like to refer you again to the book ā€œStrange Codeā€. The chapter on Befunge is short and very easy to follow.

Have fun!