|
30 | 30 | <div class="container"> |
31 | 31 | <div class="row justify-content-center text-center"> |
32 | 32 |
|
| 33 | + <div class="col-lg-5"> |
| 34 | + <h2 class="h4">📚 Easy to learn</h2> |
| 35 | + <p>Small syntax, can be learned and put to use in a few hours, no matter your programming experience.</p> |
| 36 | + </div> |
| 37 | + |
33 | 38 | <div class="col-lg-5"> |
34 | 39 | <h2 class="h4">🧰 Functional scripting language</h2> |
35 | | - <p>Every parameter is passed by value ; functions are first class citizens ; closures have explicit captures.</p> |
| 40 | + <p>Every parameter is passed by value ; functions are first class citizens ; closures use explicit captures.</p> |
36 | 41 | </div> |
37 | 42 |
|
38 | 43 | <div class="col-lg-5"> |
39 | 44 | <h2 class="h4">⚗ Easy to embed in C++ apps</h2> |
40 | | - <p>Very easy to embed it in your projects. Creating bindings <a href="/docs/tutorials/embedding">is made easy</a>.</p> |
| 45 | + <p>Very easy to embed it in your projects, to use as a scripting language. Creating bindings <a href="/docs/tutorials/embedding">is made easy</a>.</p> |
41 | 46 | </div> |
42 | 47 |
|
43 | 48 | <div class="col-lg-5"> |
44 | 49 | <h2 class="h4">⚡️ Batteries included</h2> |
45 | 50 | {{ $file := readFile "content/docs/std/_decl.txt" }} |
46 | 51 | {{ $array := split $file "\n" }} |
47 | 52 | {{ $count := len $array }} |
48 | | - <p><a href="/docs/std/">A collection of {{ math.Sub $count 1 }} algorithms</a> to help write scripts quickly.</p> |
| 53 | + <p><a href="/docs/std/">A collection of {{ math.Sub $count 1 }} algorithms</a> to help you code, without having to install hundreds of dependencies.</p> |
49 | 54 | </div> |
50 | 55 |
|
51 | 56 | <div class="col-lg-5"> |
52 | 57 | <h2 class="h4">🧱 Safe macros</h2> |
53 | 58 | <p>Write your own macros and generate code at compile time! Macros will <i>never</i> download files from the internet or need access to your hard drive.</p> |
54 | 59 | </div> |
55 | 60 |
|
56 | | - <div class="col-lg-5"> |
57 | | - <h2 class="h4">🚀 Performances</h2> |
58 | | - <p><a href="/tools/benchmarks">Decent performances</a> for use in as many situations as possible.</p> |
59 | | - </div> |
60 | | - |
61 | 61 | <div class="col-lg-5"> |
62 | 62 | <h2 class="h4">✨ Modern codebase</h2> |
63 | | - <p>Made with C++20 and heavily tested (even <a href="/docs/reference/testing_arkscript">error messages are tested</a>!)</p> |
| 63 | + <p>Made with C++20, with best practices in mind, heavily tested (we even test <a href="/docs/reference/testing_arkscript">error messages</a>).</p> |
64 | 64 | </div> |
65 | 65 |
|
66 | 66 | </div> |
|
0 commit comments