-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.9 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../assets/output.css">
<title>Document</title>
</head>
<body>
<header class="p-8 md:py-32 max-w-3xl md:mx-auto md:text-center">
<img src="../assets/logo.png" class="md:mx-auto block w-24 h-24 rounded-xl" alt="">
<h1 class="text-2xl md:text-4xl font-black mt-4 text-neutral-800">
The Pure Programming Language
</h1>
<p class="text-neutral-500 text-lg">
Pure is a programming language that compiles to JavaScript. It is designed to be a simple, efficient, safe and modern language.
</p>
<code class="mt-4 block text-left">
<pre class="bg-neutral-100 text-neutral-800 rounded-lg p-4 block">
fun main() {
let name = "World"
print("Hello, " + name)
}</pre>
</code>
<a href="" class="bg-neutral-900 text-white font-medium py-2 px-4 mt-4 inline-block rounded-lg">
<i class="fab fa-github mr-2 inline-block text-lg"></i>
Explore on Github
</a>
</header>
<hr>
<section class="p-8 md:py-32 max-w-3xl md:mx-auto">
<h1 class="text-2xl font-black text-neutral-800">
Features
</h1>
<p class="text-lg text-neutral-500">A brief tour of features that Pure supports...</p>
<ul class="list-disc list-inside ml-4 mt-4">
<li>Statically typechecked</li>
<li>Lambdas, generics, ADTs (surpowered enumerations)</li>
<li>Mutability and imperative features</li>
<li>Extensions and implementations</li>
<li>C-like structures</li>
<li>Asynchronous system</li>
<li>Easy JS interop</li>
</ul>
</section>
</body>
<script src="https://kit.fontawesome.com/4e15ed69c5.js" crossorigin="anonymous" async defer></script>
</html>