fez-lisp 1.5.171 → 1.5.173
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs.html +128 -0
- package/lib/baked/std.js +1 -1
- package/package.json +1 -1
package/docs.html
ADDED
@@ -0,0 +1,128 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="UTF-8" />
|
3
|
+
<meta
|
4
|
+
name="viewport"
|
5
|
+
content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height"
|
6
|
+
/>
|
7
|
+
<meta name="description" content="Write and run Fez programs" />
|
8
|
+
<title>Fez</title>
|
9
|
+
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
|
10
|
+
<style>
|
11
|
+
html {
|
12
|
+
color: white;
|
13
|
+
background-color: black;
|
14
|
+
font-family: 'Fantasque' !important;
|
15
|
+
}
|
16
|
+
.centered {
|
17
|
+
text-align: center;
|
18
|
+
}
|
19
|
+
/* @font-face {
|
20
|
+
font-family: 'Fantastic';
|
21
|
+
src: url(./assets/fonts/FantasqueSansMono-Regular.ttf) format('truetype');
|
22
|
+
font-display: swap;
|
23
|
+
} */
|
24
|
+
@font-face {
|
25
|
+
font-family: 'Fantasque';
|
26
|
+
src: url(./assets/fonts/FantasqueSansMono-Regular.ttf) format('truetype');
|
27
|
+
font-display: swap;
|
28
|
+
}
|
29
|
+
button {
|
30
|
+
background-color: transparent;
|
31
|
+
border: none;
|
32
|
+
position: absolute;
|
33
|
+
bottom: 15px;
|
34
|
+
right: 15px;
|
35
|
+
cursor: pointer;
|
36
|
+
}
|
37
|
+
button:active {
|
38
|
+
transform: scale(1.2);
|
39
|
+
}
|
40
|
+
button > img {
|
41
|
+
width: 32px;
|
42
|
+
height: 32px;
|
43
|
+
}
|
44
|
+
iframe {
|
45
|
+
width: 90%;
|
46
|
+
height: 200px;
|
47
|
+
border: 1px solid #8f938f;
|
48
|
+
}
|
49
|
+
p {
|
50
|
+
margin: 8px 0 8px 0;
|
51
|
+
}
|
52
|
+
.paragraph {
|
53
|
+
margin-left: 5%;
|
54
|
+
font-size: 16px;
|
55
|
+
}
|
56
|
+
</style>
|
57
|
+
</head>
|
58
|
+
<body>
|
59
|
+
<div class="centered">
|
60
|
+
<img
|
61
|
+
src="./favicon.svg"
|
62
|
+
height="64px"
|
63
|
+
style="margin-top: 16px; margin-left: 10px"
|
64
|
+
/>
|
65
|
+
<p style="font-size: 32px">Fez</p>
|
66
|
+
<p></p>
|
67
|
+
<p style="font-size: 20px">Simple, typed, lisp programming language</p>
|
68
|
+
</div>
|
69
|
+
<div class="paragraph" style="margin-top: 16px">
|
70
|
+
<p>Here you will learn everything you need to know about Fez.</p>
|
71
|
+
<ul>
|
72
|
+
<li>
|
73
|
+
It has types and they are mostly infered (no need to define them).
|
74
|
+
</li>
|
75
|
+
<li>
|
76
|
+
Everything is an expression (everything can be assigned to a variable).
|
77
|
+
</li>
|
78
|
+
<li>
|
79
|
+
Tree shaking of functions from standard library (imports automatically
|
80
|
+
and only the functions needed).
|
81
|
+
</li>
|
82
|
+
<li>
|
83
|
+
Tail call and Memoized optimizations on recursions using a simple
|
84
|
+
prefix.
|
85
|
+
</li>
|
86
|
+
<li>It has only Floats, Arrays and Functions.</li>
|
87
|
+
<li>Booleans are the numbers 0 and 1.</li>
|
88
|
+
<li>
|
89
|
+
Strings, Objects, Sets, Trees - these are implemented using only the
|
90
|
+
Array.
|
91
|
+
</li>
|
92
|
+
<li>There is an interpreter written in JavaScript.</li>
|
93
|
+
<li>There is a compiler that compiles to JavaScript.</li>
|
94
|
+
<li>
|
95
|
+
You can always try it on the
|
96
|
+
<a href="https://at-290690.github.io/fez/index.html">
|
97
|
+
Online Playground </a
|
98
|
+
>.
|
99
|
+
</li>
|
100
|
+
</ul>
|
101
|
+
</div>
|
102
|
+
<div class="paragraph" style="margin-top: 16px">
|
103
|
+
<p>
|
104
|
+
This language is so simple that an interpreter for it can be implemented
|
105
|
+
in any other language
|
106
|
+
</p>
|
107
|
+
<p>For example there are python, rust and even fez interpreters!</p>
|
108
|
+
<p>
|
109
|
+
The one here can easily run them on the web where you can share your
|
110
|
+
programs with others via a link.
|
111
|
+
</p>
|
112
|
+
</div>
|
113
|
+
<div class="centered">
|
114
|
+
<iframe src="index.html?l=BQagBAjGBMCUQ%3D%3D%3D"></iframe>
|
115
|
+
</div>
|
116
|
+
|
117
|
+
<div class="centered">
|
118
|
+
<iframe
|
119
|
+
src="index.html?l=BQGwpgLgBAHlCMAGAlFA3FAJmAZgSwDswoBDKANxICc8SAjcWKAdzwgAsoPjKQBXYkgBQoSLADOUANrwoAJigBmWAF1UGbPiKkCpKlRIBPCSzadCbWiAol%2BYcUA%3D"
|
120
|
+
></iframe>
|
121
|
+
</div>
|
122
|
+
|
123
|
+
<div class="centered">
|
124
|
+
<iframe
|
125
|
+
src="index.html?l=BQGwpgLgBAFmIgPZQEQAl5KgdUQJxABMBCFASgCg4FEg"
|
126
|
+
></iframe>
|
127
|
+
</div>
|
128
|
+
</body>
|