-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
147 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
|
||
|
||
|
||
<title>Chigraph</title> | ||
<meta name="description" content="A simple, flowgraph-based programming language."> | ||
|
||
|
||
<link rel="stylesheet" href="/assets/main.css"> | ||
<link rel="canonical" href="https://chigraph.io/"> | ||
|
||
|
||
<link rel="alternate" type="application/rss+xml" title="Chigraph" href="https://chigraph.io/feed.xml"> | ||
|
||
|
||
|
||
|
||
<meta name="twitter:card" content="summary"> | ||
|
||
<meta name="twitter:title" content="Chigraph"> | ||
<meta name="twitter:description" content="A simple, flowgraph-based programming language."> | ||
|
||
|
||
|
||
<script type="text/javascript"> | ||
WebFontConfig = { | ||
google: { families: [ 'Bitter:400,700,400italic:latin' ] } | ||
}; | ||
(function() { | ||
var wf = document.createElement('script'); | ||
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') + | ||
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'; | ||
wf.type = 'text/javascript'; | ||
wf.async = 'true'; | ||
var s = document.getElementsByTagName('script')[0]; | ||
s.parentNode.insertBefore(wf, s); | ||
})(); | ||
</script> | ||
|
||
|
||
|
||
</head> | ||
|
||
|
||
<body> | ||
|
||
<header class="site-header"> | ||
|
||
<div class="wrapper"> | ||
|
||
<a class="site-title" href="/"> | ||
<img src="/assets/fish.png" style="height: 1.2em; padding: .3em; float: left; vertical-align: middle"></img> | ||
Chigraph | ||
</a> | ||
|
||
<nav class="site-nav"> | ||
<a class="page-link" href="/documentation/">Documentation</a> | ||
<a class="page-link" href="/archives/">Blog</a> | ||
<a class="page-link" href="https://api.chigraph.io/">API</a> | ||
<a class="page-link" href="https://github.com/chigraph/chigraph">GitHub</a> | ||
</nav> | ||
|
||
</div> | ||
|
||
</header> | ||
|
||
|
||
<main class="page-content" aria-label="Content"> | ||
<div class="wrapper"> | ||
<div class="home"> | ||
|
||
<p>Chigraph is a programming language for beginners that contains the power of a professional tool.</p> | ||
|
||
<p><img src="/assets/demo.png" alt="Demo" /></p> | ||
|
||
<p>Features:</p> | ||
<ul> | ||
<li>Easy to learn visual syntax</li> | ||
<li>Fast execution–compiled straight to LLVM bytecode</li> | ||
<li>Fast compilation</li> | ||
<li>Package manager</li> | ||
<li>Library based compiler for trivial tooling</li> | ||
<li>Cross-platform</li> | ||
</ul> | ||
|
||
<p>License:</p> | ||
<ul> | ||
<li><a href="https://www.apache.org/licenses/LICENSE-2.0">Apache-2.0</a></li> | ||
</ul> | ||
|
||
|
||
|
||
|
||
|
||
<ul class="post-list"> | ||
|
||
</ul> | ||
|
||
|
||
|
||
|
||
</div> | ||
|
||
</div> | ||
</main> | ||
|
||
|
||
<footer class="site-footer"> | ||
|
||
<div class="wrapper"> | ||
|
||
<p> | ||
|
||
|
||
© - Powered by <a href="https://jekyllrb.com">Jekyll</a> & <a href="https://github.com/yous/whiteglass">whiteglass</a> - Subscribe via <a href="https://chigraph.io/feed.xml">RSS</a> | ||
|
||
</p> | ||
|
||
</div> | ||
|
||
</footer> | ||
|
||
|
||
|
||
|
||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | ||
|
||
ga('create', 'UA-101634364-1', 'auto'); | ||
ga('send', 'pageview'); | ||
|
||
</script> | ||
|
||
|
||
</body> | ||
|
||
</html> |