-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (39 loc) · 2.79 KB
/
index.html
File metadata and controls
41 lines (39 loc) · 2.79 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
---
layout: default
---
<div class="header-container jumbotron">
<div class="container">
<h1>Fuse Programming language</h1>
<p>A typed fusion of Lua dialects that can compile into any Lua-like runtime(including multiple Lua versions, luaJIT, and luau).</p>
<p><a class="btn btn-primary btn-lg" href="{{ "/docs/home/" | relative_url }}" role="button">Learn more</a></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2 class="header-light regular-pad">What is Fuse?</h2>
<p class="lead">Fuse is a gradually typed dialect of <a href="https://lua.org">Lua</a> written in the <a href="https://www.rust-lang.org/">Rust</a> language, Relation between Fuse and Lua is similar to what <a href="https://www.typescriptlang.org/">Typescript</a> is to <a href="https://en.wikipedia.org/wiki/JavaScript">JavaScript</a>, <a href="https://www.scala-lang.org/">Scala</a> to <a href="https://www.java.com/">Java</a>, <a href="https://sorbet.org/">Sorbet</a> to <a href="https://www.ruby-lang.org/">Ruby</a> and <a href="https://hacklang.org/">Hack</a> to <a href="https://www.php.net/">PHP</a>; The Fuse compiler is written in the Rust language with a high priority on the compilation speed!</p>
</div>
<div class="col-md-6 text-center">
<img src="{{ "/assets/img/hero-dark.png" | relative_url }}" alt="Fuse logo" class="img-responsive">
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-lightbulb-o" aria-hidden="true"></i></h1>
<h3 class="text-center">Why</h3>
<p>Lua's being small and easily embadable phlosophy comes with a lot of upsides in making the code portable but It has one big downside, Lua cannot have complex features since it has a single pass compiler! Fuse helps with bringing more modern features, types, and an extended runtime containing better data structures to easily adopt in your programs!</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-gear" aria-hidden="true"></i></h1>
<h3 class="text-center">How</h3>
<p>Fuse works as a compilation step, It will get compiled down into the selected target language and will generate highly readable, highly optimized code which lets us add a lot of features without the support in the underlying language!</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa fa-magic" aria-hidden="true"></i></h1>
<h3 class="text-center">Macros</h3>
<p>Fuse comes with a procedural macro system, It is operating on the AST level and would let us do meta programming right within our code.</p>
</div>
</div>
</div>