From Esolang to Numeric Script: Building Formin in Fortran
dev.to·1d·
Discuss: DEV
Flag this post

Most programming languages begin with a clear intention. Formin didn’t.

It started as a strange little esolang experiment built around an unusual flow-based command syntax, mostly for fun. Over time, though, something unexpected emerged: the structure turned out to be surprisingly good for concise numeric scripts and predictable control flow. That realization turned Formin from an esoteric toy into a small compiled language with a Fortran-based toolchain and a focus on math-heavy scripting.

This post walks through the journey, the architecture, and some of the lessons learned while building a compiler and VM in Fortran.

Origins: An Esolang With a Weird Syntax Formin’s syntax is built around commands that look like this:

create#/greeting|'Hello!'/#
color#/bright_green/#
s...

Similar Posts

Loading similar posts...