-
Notifications
You must be signed in to change notification settings - Fork 7
/
about.html
198 lines (178 loc) · 7.71 KB
/
about.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>io about</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="home_header.css">
<link rel="stylesheet" href="about.css">
<link rel="stylesheet" href="fonts/Helvetica/fonts.css">
<script type="module" src="js/KeyNav/KeyNav.js"></script>
<style>
</style>
</head>
<body>
<div class="container leftSpace">
<div class="header">
<div class="pageHeader">
<div class="topSpace"></div>
<div class="pageTitle"><a href="index.html">Io</a></div>
<div class="pageSubtitle"> / about </div>
</div>
</div>
<div class="text">
<div class="description">
Io is a programming language focused on expressiveness through simplicity.
<!--
Io is a highly dynamic prototype-based programming language.
The ideas in Io are mostly inspired by Smalltalk (objects, message passing), Self (prototype-based), NewtonScript (differential inheritance), Act1 (actors and futures), Lisp (code is a runtime inspectable / modifiable tree) and Lua (small, embeddable).
-->
</div>
<div class="items">
<!--
<div class="chunk">
<div class="chunkLeft">
focus
</div>
<div class="chunkRight">
expressiveness through simplicity
</div>
</div>
-->
<div class="chunk">
<div class="chunkLeft">
inspirations
</div>
<div class="chunkRight">
Self, Lua, Smalltalk, NewtonScript, Act1, LISP
</div>
</div>
<div class="chunk">
<div class="chunkLeft">
pure
</div>
<div class="chunkRight">
minimal syntax<br>
all values are objects<br>
prototype-based object model<br>
everything is a message, even assignment<br>
no keywords, no globals
</div>
</div>
<div class="chunk">
<div class="chunkLeft">
dynamic
</div>
<div class="chunkRight">
all messages are dynamic<br>
code is a runtime modifiable tree of messages<br>
arguments passed by expression, receiver controls eval<br>
differential inheritance<br>
become, transparent proxies, weak links
</div>
</div>
<div class="chunk">
<div class="chunkLeft">
concurrent
</div>
<div class="chunkRight">
coroutine based actors <br>
transparent futures <br>
automatic lock detection <br>
</div>
</div>
<!--
<div class="chunk">
<div class="chunkLeft">
accessible
</div>
<div class="chunkRight">
small<br>
open source
</div>
</div>
-->
<div class="chunk">
<div class="chunkLeft">
implementation
</div>
<div class="chunkRight">
small<br>
C stack based interpreter<br>
open source<br>
embeddable <br>
multi-state <br>
incremental collector <br>
</div>
</div>
</div>
<div class="items">
<div class="chunk">
<div class="chunkLeft" style="color: #999;">
status
</div>
<div class="chunkRight" style="color: #999;">
binaries maintained by Jake Jeck<br>
build system maintained by Ales Tsurko<br>
patches welcome
</div>
</div>
<div class="chunk">
<div class="chunkLeft" style="color: #999;">
history
</div>
<div class="chunkRight" style="color: #999;">
created in 2002<br>
actively developed until 2008<br>
</div>
</div>
<div class="chunk">
<div class="chunkLeft" style="color: #999;">
future
</div>
<div class="chunkRight" style="color: #999;">
WASM implementation <br>
abstracted slots <br>
transparent transactional persistence <br>
capabilities <br>
<!--
abstracted slots, notifications<br>
separation from C stack, continuations<br>
full set of value type primitives<br>
transactions, durability<br>
mobile transparent actors<br>
default to utf8 strings/symbols<br>
cleanup true/false<br>
-->
</div>
</div>
<br><br><br><br>
<!--
<div class="chunk">
<div class="chunkLeft" style="color: #999;">
implementation
</div>
<div class="chunkRight" style="color: #999;">
multi-state <br>
incremental collector <br>
weak links <br>
become <br>
transparent proxies
</div>
</div>
</div>
<br><br>
when became clear that maintaining a multi-platform build system and C implementation was too time consuming.
<br>
<a href="https://github.com/quag">Jonathan Wright</a>,
<a href="https://github.com/doublec">Chris Double</a>,
<a href="https://github.com/jeremytregunna">Jeremy Tregunna</a>, and
<a href="https://github.com/richcollins">Rich Collins</a>.
<br>
-->
<br>
</div>
</div>
</body>
</html>