-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
99 lines (87 loc) · 2.32 KB
/
index.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
---
layout: default
---
<!--
Copyright (C) 2015-2019 Paul Bone
Licensed as CC BY-NC-ND 4.0
-->
<div class="home">
<p>
The Plasma programming language strikes a balance between <b>functional</b>
and <b>imperative</b> programming,
making it easier to write reliable and efficient software.
Plasma also has a strong focus on <b>concurrency</b> and <b>parallelism</b>,
and will eventually support automatic parallelisation.
Plasma is <b>under development</b> and is not usable yet.
</p>
<div id="features-sample">
<div id="features">
<p>
Its planned features include:
</p>
<ul>
<li>side-effect free semantics,</li>
<li>a strong, static and expressive type system,</li>
<li>direct support for loops, arrays and streams,</li>
<li>a foreign function interface (FFI) for integration with C,</li>
<li>concurrency support with N:M threading,</li>
<li>manual and automatic parallelisation</li>
<li>MIT License</li>
</ul>
</div>
<div id="sample">
<h3>Sample</h3>
<div class="listing">
<pre><b>func</b> fib(n : Int) -> Int {
<b>if</b> (n < 2) {
<b>return</b> 1
} <b>else</b> {
<b>return</b> fib(n-1) + fib(n-2)
}
}</pre>
</div>
</div>
</div>
<p>
For more information see our
<a href="about.html">About page</a>,
and for detailed information about syntax and semantics take a look at the
<a href="docs/plasma_ref.html">Plasma Language Reference</a>
and the rest of the <a href="docs/">documentation</a>.
</p>
<h2>Latest News</h2>
<dl class="news">
{% for post in site.posts limit:5 %}
<dt>
<a href="{{ post.url }}">
<time itemprop="datePublished"
datetime="{{ post.date | date_to_xmlschema }}">
{{ post.date | date: "%b %-d, %Y" }}
</time>
—
{{ post.title }}
</a>
</dt>
<dd>
{{ post.excerpt }}
</dd>
{% endfor %}
</dl>
<p>
See all <a href="news.html">news</a>.
</p>
<h2>How can I help?</h2>
<p>
The project is in its very early stages,
so there is both plenty of work to do yet that work is pretty specific.
Check our
<a href="https://github.com/PlasmaLang/plasma/blob/master/CONTRIBUTING.md">CONTRIBUTING.md</a>
file for information and suggestions.
Plasma's source code is hosted
<a href="https://github.com/PlasmaLang/plasma">on github</a>.
</p>
<p>
Feel free to follow along on via
<a href="{{ site.contact_page }}">Mailing lists, chat or social media</a>.
</p>
</div>