-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (73 loc) · 3.67 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
<!DOCTYPE html>
<html>
<link rel="preconnect" href="https://fonts.gstatic.com">
<head>
<title>The FreakC Programming Language</title>
<script src="https://unpkg.com/rottenjs"></script>
<script src="./libs/anime.min.js"></script>
<link rel="stylesheet" type="text/css" href="./styles/main.css">
<link rel="stylesheet" type="text/css" href="./styles/stylesheet.css">
<link rel="icon" href="./assets/logo.png">
</head>
<body>
<div class="app">
<ul class="nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./examples.html">Examples</a></li>
<li><a href="./ides.html">IDEs</a></li>
<li><a href="https://github.com/FreakC-Foundation/FreakC/blob/master/TUTORIAL.md" target="_blank">Documentations</a></li>
<li style="float:right"><a href="https://github.com/FreakC-Foundation/" target="_blank">Github</a></li>
<li style="float:right"><a href="./assets/FreakC.zip" download target="_blank">Install</a></li>
</ul>
<div align="center" class="container">
<img src="./assets/logo.png"></img>
<br/><br/>
<div class="quote typing"></div>
<br/><br/><br/><br/>
<a href="https://github.com/FreakC-Foundation/FreakC/blob/master/TUTORIAL.md" target="_blank"><button>Get Started!</button></a>
<a href="https://github.com/FreakC-Foundation/FreakC" target="_blank"><button>Github</button></a>
<a href="https://discord.gg/eNwqK4APsD" target="_blank"><button>Discord</button></a>
<br/>
<div class="smallcontent" align="left">
FreakC is a small, experimental programming language. It's a project with the idea of trying to create a full-blown programming language in such a small language like Batch. It is transpiled to Batch, and looks/works pretty much the same as Batch, which means that you can switch from Batch to FreakC easily, while FreakC has added a tiny bit more features to improve your experience with Batch scripting: macro definition, while loops, repeat-until loops, switch case, some additional operators, commands and macros/inline functions, more functions/commands for arrays, strings and math, and the support for floats too.
<br/><br/>
FreakC is 100% open-source, so if you want to create your own language, consider checking out <a href="https://github.com/FreakC-Foundation/FreakC">FreakC's Github</a>
<br/><br/>
But to sum it up, FreakC is kind of a programming language for Batch coders/hobbyists rather than a serious one.
</div>
<br/>
<br/>
<br/>
<div class="yt-box">
<p align="left" style='width: 32%;'><b>The new FreakC</b></p>
<iframe allowfullscreen width="500" height="315" src="https://www.youtube.com/embed/WM_fttE-cJw"></iframe>
</div>
<br/>
<div class="yt-box">
<p align="left" style='width: 32%;'><b>Setting up FreakC's environment</b></p>
<iframe allowfullscreen width="500" height="315" src="https://www.youtube.com/embed/l_3sFSArQWg"></iframe>
</div>
<br/>
<a onclick="rt('ul').scroll()"><button>Scroll up!</button></a>
<br/>
<a href="https://www.facebook.com/FreakC-Programming-Language-111425377421861" target="_blank"><img class="logo" src="./assets/fb-logo.png"></a>
<a href="https://github.com/FreakC-Foundation/" target="_blank"><img class="logo" src="./assets/gh-logo.png"></a>
<a href="https://npmgames.itch.io/freakc" target="_blank"><img class="logo" src="./assets/io-logo.png"></a>
<a href="https://discord.gg/eNwqK4APsD" target="_blank"><img class="logo" src="./assets/dc-logo.png"></a>
<br/>
<br/>
<br/>
<br/>
</div>
</div>
<script>
rt('.typing').typing({
str: 'print[] Hello, World from FreakC!',
clrPrev: true,
speed: 50
});
</script>
</body>
</html>