-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (62 loc) · 2.93 KB
/
index.html
File metadata and controls
83 lines (62 loc) · 2.93 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
---
title: Home Page
---
<!DOCTYPE HTML>
<head>
<title>ChaiScript - Easy to use scripting for C++.</title>
{% include common.html %}
</head>
<body>
{% include header.html %}
<div class="jumbotron cs-blue">
<div class="container">
<div class="row">
<div class="col-md-4">
<h1>ChaiScript</h1>
<p><img src="/logo.png" align="left"/> an easy to use embedded scripting language for C++.</p>
<br/>
<a class="btn btn-default btn-lg " href="https://github.com/ChaiScript/ChaiScript/releases">Download</a>
</div>
<div class="col-md-8">
{% gist 9190735 %}
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h3><i class="fa fa-magic"></i> Straightforward</h3>
The above is a complete example of exposing a function to ChaiScript, calling it with a parameter and returning a value.
</div>
<div class="col-md-4">
<h3><i class="fa fa-file-text"></i> Header Only</h3>
There are no external tools required, no preprocessor, no libraries, just your C++14 compliant compiler.
</div>
<div class="col-md-4">
<h3><i class="fa fa-linux"></i> <i class="fa fa-windows"></i> <i class="fa fa-apple"></i> Portable</h3>
ChaiScript is fully tested for 32bit and 64bit on Windows (MSVC2013), clang++ and g++.
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3><i class="fa fa-tachometer"></i> Stable</h3>
<a href="https://travis-ci.org/ChaiScript/ChaiScript.svg?branch=master"><img src="https://travis-ci.org/ChaiScript/ChaiScript.png?branch=master"/></a>
<a href="https://ci.appveyor.com/project/lefticus/chaiscript"><img src="https://ci.appveyor.com/api/projects/status/6u3r4s81kkjqmsqw/branch/develop?svg=true"></a>
<a href="http://codecov.io/github/ChaiScript/ChaiScript?branch=master"><img src="http://codecov.io/github/ChaiScript/ChaiScript/coverage.svg?branch=master" alt="Coverage Status" /></a>
<!-- <a href="https://scan.coverity.com/projects/5297"><img alt="Coverity Scan Build Status" src="https://img.shields.io/coverity/scan/5297.svg"/></a><br/><br/> -->
<br/>ChaiScript has been making stable releases since 2009. No bugfix or feature is made without a corresponding unit test.
</div>
<div class="col-md-4">
<h3><i class="fa fa-check"></i> Thread Safe</h3>
By default ChaiScript is thread safe. Thread safety can be disabled for enhanced performance.
</div>
<div class="col-md-4">
<h3><i class="fa fa-microphone"></i> Free</h3>
<a href="https://github.com/ChaiScript/ChaiScript/blob/master/license.txt"><img src="https://img.shields.io/github/license/ChaiScript/ChaiScript.svg"/></a>
<br/>
ChaiScript is licensed with the <a href="https://github.com/ChaiScript/ChaiScript/blob/master/license.txt">BSD</a> license and is free to use in your free or commercial projects.
</div>
</div>
</div>
</body>