forked from IoLanguage/iolanguage.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
84 lines (80 loc) · 2.33 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<title>Core Programming Language – About</title>
<link rel="stylesheet" href="css/base.css">
</head>
<body>
<div class="container leftSpace">
<header>
<div class="pageHeader">
<div class="topSpace"></div>
<div class="pageTitle"><a href=".">Core</a></div>
<div class="pageSubtitle"> / about </div>
</div>
</header>
<main>
<div class="description">
Core is a modern programming language <br>
that uses a minimal set of orthogonal building blocks <br>
to ensure simplicity, readability, modifiability and stability.
</div>
<div class="items">
<div class="chunk">
<div class="chunkLeft">
modern
</div>
<div class="chunkRight">
generics and traits <br>
all values are objects <br>
expressions, not statements
</div>
</div>
<div class="chunk">
<div class="chunkLeft">
minimal
</div>
<div class="chunkRight">
no modifiers <br>
no exceptions <br>
no null pointers <br>
no static members <br>
no collection literals <br>
no implicit conversions <br>
no method overloading
</div>
</div>
<div class="chunk">
<div class="chunkLeft">
typed
</div>
<div class="chunkRight">
the compiler rejects ill-typed code<br>
values do not have "magic" methods<br>
all operations used need to be declared
</div>
</div>
<div class="chunk">
<div class="chunkLeft">
accessible
</div>
<div class="chunkRight">
safe<br>
small<br>
hackable<br>
open source
</div>
</div>
</div>
<br><br>
<h4>History</h4>
<div class="description">
The implementation of Core is derived from dora, created by <a href="https://github.com/dinfuehr">@dinfuehr</a>.<br>
The website of Core is derived from io, created by <a href="https://github.com/stevedekorte">@stevedekorte</a>.<br>
Thanks to everyone who made contributions.
</div>
</main>
</div>
</body>
</html>