RUNESCRIPT
A programming language built on the Elder Futhark. Where mythology becomes the documentation and runes become the syntax.
4 INVENTIONS · #79–82Every programming language is built on English
if, else, while, return, function — there is no technical reason for this. It is a historical artifact of where computing was invented. The compiler does not care what the symbols look like. It cares about the grammar.
Runescript replaces English keywords with Elder Futhark runes. Each rune maps to a programming construct through its mythological meaning — not arbitrarily, but semantically. The mythology is the documentation.
Rune to construct
Fibonacci in runes
// The Fibonacci sequence computed in Runescript ᚅ a = 0 ᚅ b = 1 ᚅ count = 0 ᚾ (count < 10) { ᚨ(a) ᚅ temp = a + b a = b b = temp count = count + 1 } // Output: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34
Write. Run. In runes.
Six languages. Six civilizations.
Runescript is the first. Each language in the family is built on a different ancient writing system, each teaching a different paradigm of computation through its culture’s mythology.