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
| | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>olang</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<h1><span class="logo-name">olang</span> | O Programming Language</h1>
<nav>
<span>[ <a href="/">Home</a> ]</span>
<span>[ <a href="/manual/">Manual</a> ]</span>
<span>[ <a href="https://sr.ht/~johnnyrichard/olang/sources" target="_blank">Sources ↗</a> ]</span>
<span>[ <a href="https://sr.ht/~johnnyrichard/olang/lists" target="_blank">Mailing list ↗</a> ]</span>
</nav>
</header>
<article>
<p>
The O language is a system programming language crafted to be remarkably
simple and flexible. It stands not as a replacement for C, but rather as
a complementary counterpart, as both can coexist within the same source
code. O language boasts minimal abstraction, ensuring seamless
integration with C and almost predictable machine code.
</p>
<p>
olang is a deterministic system language that follows tree principles:
</p>
<ul>
<li>
<strong>fights complexity</strong>
by providing a simple syntax with a low level of abstraction
</li>
<li>
<strong>doesn't babysit programmers</strong>
it gives you the freedom of shooting your own foot
</li>
<li>
<strong>aims easy maintainability</strong>
by providing a syntax with a low refactoring overhead.
</li>
</ul>
<h2>Notice</h2>
<p>
This software is unfinished and not production ready.
</p>
</article>
<footer>
© 2024 olang maintainers
</footer>
</body>
</html>
|