codemirror-element/index.html
Christian Lawson-Perfect 6c637e42c8 first commit
2025-02-12 10:55:30 +00:00

38 lines
No EOL
724 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>A thing made by CLP</title>
<script type="module" src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>A thing made by CLP</h1>
</header>
<main>
<h2>Elm</h2>
<code-editor language="elm">
module Poo
type alias Poo
= Arg Int
| Poo Float
a : Poo -> Poo
a plop = case plop of
Arg i -> Poo (toFloat i)
Poo f -> Arg (floor f)
</code-editor>
<h2>JavaScript</h2>
<code-editor language="javascript">
const x = 1;
function a() {
return x%2;
}
</code-editor>
</main>
</body>
</html>