Echo Input - Befunge Typing CST Test
Loading…
Echo Input — Befunge Code
Reads a single character from input and prints it.
, & @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.