This commit is contained in:
Alexander 2025-06-10 13:15:24 -04:00
parent 864544624c
commit a3e82f34b5
246 changed files with 4433 additions and 2 deletions

View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
Ytheleus | Well-Understood Programming
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/index.css">
<link rel="icon" type="image/png" href="/assets/favicon.png">
<script>
const class_ = `font-${window.devicePixelRatio >= 1.3 ? 'hidpi' : 'lodpi'}`;
document.documentElement.className = class_;
</script>
<meta name="generator" content="soupault">
</head>
<body>
<main class="container">
<section id="Ytheleus-Well-Understood-Programming">
<h1>
Ytheleus | Well-Understood Programming
</h1>
<p>
Youre at ytheleus.org, home page of the <a href="yth-name">Ytheleus</a> programming language!
</p>
<p>
This is not implemented yet; Ytheleus does not exist. With that out of the way, here are my vague ideas of what it should be:
</p>
<ul>
<li>
Its Andreas Rossbergs 1ML, but computationally pure.
</li>
<li>
The implementation uses dynamic superinstructions for interpretation and compiles either via “Compiling without continuations”, if I decide not to put first-class multiple-resumption continuations in the lanugage, or with CPS, otherwise.
</li>
</ul>
</section>
</main>
</body>
</html>