Hello World in Befunge - Befunge Typing CST Test
Loading…
Hello World in Befunge — Befunge Code
A classic 'Hello, World!' in Befunge demonstrating 2D control flow.
>25*"!dlroW ,olleH":v
v:,_@
> ^Befunge Language Guide
Befunge is a two-dimensional esoteric programming language where code flows across a grid in multiple directions, allowing self-modifying behavior and unusual program structures.
Primary Use Cases
- ▸Code-golf challenges using 2D logic
- ▸Educational demonstrations of non-linear control flow
- ▸Studying self-modifying grid-based programs
- ▸Obfuscation and creative puzzle programs
- ▸Esoteric language experimentation
Notable Features
- ▸Two-dimensional instruction execution
- ▸Self-modifying code via 'p' and 'g' instructions
- ▸Stack-based operations
- ▸Randomized flow with '?' instruction
- ▸Readable ASCII grid layout
Origin & Creator
Befunge was created in 1993 by Chris Pressey as a language intentionally difficult to compile and optimize.
Industrial Note
Befunge is mainly used in recreational programming, code-golf challenges, esolang experimentation, and demonstrations of self-modifying 2D code flow patterns.