-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (58 loc) · 2.59 KB
/
Copy pathindex.html
File metadata and controls
60 lines (58 loc) · 2.59 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
---
layout: default
---
<div class="header-container jumbotron">
<div class="container">
<h1>Kos Programming Language</h1>
<p>Modern scripting language which is fun to use.</p>
<p><a class="btn btn-primary btn-lg" href="{{ "/docs/home/" | relative_url }}" role="button">Get Started</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 text-center">
<img src="{{ "/assets/img/kos-logo.png" | relative_url }}" alt="Kos logo" class="img-responsive">
</div>
<div class="col-md-6">
<h2 class="header-light regular-pad">What is Kos?</h2>
<p class="lead">
Kos is a general purpose scripting language, which builds on top
of the most successful scripting languages, but is designed with usability in mind.
</p>
<p class="lead">
It is easy to learn and easy to use. Featuring simple, modern, feature-rich syntax,
it is designed to reduce commont types of bugs. Dynamically typed, object-oriented,
with elements of functional programming, it can be used to create standalone scripts
or it can be embedded in other applications.
</p>
<p class="lead">
Unlike most other scripting languages, Kos is ready for modern multi-core processors
thanks its robust support for native multithreading.
</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-rocket" aria-hidden="true"></i></h1>
<h3 class="text-center">Get Started</h3>
<p>
Set up Kos interpreter on your system and start writing scripts!
Visit <a href="/docs/home">Documentation</a> and learn your way around Kos.
</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-download" aria-hidden="true"></i></h1>
<h3 class="text-center">Downloads</h3>
<p>
Download Kos for your Operating System from <a href="https://github.com/kos-lang/kos/releases">Kos GitHub releases page</a>.
</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-newspaper-o" aria-hidden="true"></i></h1>
<h3 class="text-center">News</h3>
{{ site.posts.first.excerpt }}
<p><a href="{{ site.posts.first.url | relative_url }}">Read more...</a></p>
</div>
</div>
</div>