-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
109 lines (101 loc) · 3.44 KB
/
about.html
File metadata and controls
109 lines (101 loc) · 3.44 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
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
<!DOCTYPE html>
<!--
(c) 2024-present Fooble
-->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="rust,coding,programming,ilanguage,i-language,i language"
/>
<meta
name="description"
content="I Language is a programming language made in rust."
/>
<link
href="https://github.com/I-Language-Development/I-language-rust/blob/main/.github%2Flogo.ico?raw=true"
rel="shortcut icon"
type="image/x-icon"
/>
<link
href="https://github.com/I-Language-Development/I-language-rust/blob/main/.github%2Flogo.png?raw=true"
rel="apple-touch-icon"
/>
<link rel="stylesheet" href="/css/styles.css" />
<link rel="stylesheet" href="/css/utils.css" />
<title>I Language - About</title>
</head>
<body class="dark">
<nav>
<a href="/" class="logo">
<img
src="https://github.com/I-Language-Development/I-language-rust/blob/main/.github%2Flogo.ico?raw=true"
alt="I Language"
/>
I Language
</a>
<ul>
<li><a href="/">Home</a></li>
<li><a class="selected" href="/about">About</a></li>
<li><a href="/team">Team</a></li>
<li><a href="/playground">Playground</a></li>
<li><a href="https://i-language-rust.readthedocs.io">Docs</a></li>
</ul>
</nav>
<section class="hero hero-small">
<h1>About</h1>
<p>
I programming language is a high level programming language written in rust.
</p>
</section>
<section class="section-2">
<div class="text">
<h2>History</h2>
<p>
We always had a dream of programming in a language, designed like we
wanted to. <a href="https://github.com/ElBe-Plaq">ElBe</a> first created
"ElBlang", stored in a private repository and not being capable of doing
anything. After a disscussion with a different developer,
<a href="https://github.com/MasterOktagon">MasterOktagon</a>, they wanted
to create their own language. ElBe created the project outline, while
MasterOkatagon was busy making the lexer.
<a href="https://github.com/Ranastra">Ranastra</a> joined shortly after.
They together created a parser, but quickly realized that doing this in python
was not a good idea. So they archived the repository and made a new one,
this time in Rust.
</p>
</div>
</section>
<section class="section-2">
<div class="text">
<h2>Syntax</h2>
<p>
The syntax is mostly inspired by Rust, but also has some features from
Python and C++. Currently there are 21 keywords, 48 marks (operators and
other symbols) and some other syntax features.
</p>
</div>
</section>
<footer>
<div>
<p>© 2024-present I Language Development</p>
<p><small>Website made with ❤ by <a href="https://fooble.dev">Fooble</a></small></p>
</div>
<div>
<ul>
<li><a href="/about">About</a></li>
<li><a href="/team">Team</a></li>
<li><a href="/playground">Playground</a></li>
</ul>
</div>
<div>
<ul>
<li id="theme-toggle">Change theme</li>
</ul>
</div>
</footer>
<script src="/js/theme.js"></script>
</body>
</html>