From 7443284cdd97cf6bfdc962f1d1b95669d0eb24e2 Mon Sep 17 00:00:00 2001 From: Tom Ellis Date: Sat, 28 Jan 2023 18:23:44 +0000 Subject: [PATCH] Bootstrap fixes Thanks to @Martinsos --- site/index.html | 37 +++++++++++++++++++++++++++---------- 1 file changed, 27 insertions(+), 10 deletions(-) diff --git a/site/index.html b/site/index.html index 0c6ec104..4c2218df 100644 --- a/site/index.html +++ b/site/index.html @@ -5,22 +5,27 @@ ---
-
- +
+ +
+
- -

An advanced, purely functional programming language

+ + +

An advanced, purely functional programming language

-
-
-

Declarative, statically typed code.

-
-
primes = filterPrime [2..]
+            
+
+
+

Declarative, statically typed code.

+
+
primes = filterPrime [2..]
   where filterPrime (p:xs) =
           p : filterPrime [x | x <- xs, x `mod` p /= 0]
+
@@ -35,7 +40,13 @@

Declarative, statically typed code.

-
+ +
+ + + + +
@@ -63,7 +74,13 @@

Try it!

+
+ + + + +