
robida.net
May 22, 2026
2 min read
47/100
Summary
A Forth-inspired language for writing websites I don't remember where the idea came from, but I decided that it would be cool if I could write websites using a stack-based language. Something like this: : h1 ( s -- ) "<h1>" emit . "</h1>" emit ; "Hello, World!" h1 So I wrote Forge. I quickly built a library of word definitions that let me easily add microformats to the HTML: : post-content "Hello,...