mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
49 lines
2.0 KiB
HTML
49 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>The Roc Programming Language</title>
|
|
<!-- <meta name="description" content="A language for making delightful software."> -->
|
|
<meta name="viewport" content="width=device-width">
|
|
<style type="text/css">
|
|
html {
|
|
max-width: 35em;
|
|
margin: 0 auto;
|
|
font-family: sans-serif;
|
|
line-height: 145%;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
</style>
|
|
<!-- <link rel="icon" href="/favicon.svg"> -->
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Work in Progress</h1>
|
|
<p>Roc's initial release is still under development, and this website is a placeholder until that release is ready.
|
|
</p>
|
|
<p>In the meantime, if you'd like to learn more about Roc, here are some videos:</p>
|
|
<ul>
|
|
<li><a href="https://media.handmade-seattle.com/roc-lang">Roc at Handmade Seattle</a> - November 12,
|
|
2021 (very low-level explanation of how Roc's compiler makes programs run fast)</li>
|
|
<li><a href="https://youtu.be/vzfy4EKwG_Y">Outperforming Imperative with Pure Functional Languages</a> - October 1,
|
|
2021 (about Roc's runtime performance and optimizer)</li>
|
|
<li><a href="https://youtu.be/6qzWm_eoUXM">A taste of Roc</a> - September 23, 2021 (syntax, application examples)
|
|
</li>
|
|
<li><a href="https://youtu.be/cpQwtwVKAfU?t=75">Roc at the Philly ETE conference</a> - May 6, 2021 (platforms and
|
|
applications)</li>
|
|
<li><a href="https://youtu.be/FMyyYdFSOHA">Roc on Zig Showtime</a> - April 24, 2021 (making a platform)</li>
|
|
<li><a href="https://youtu.be/ZnYa99QoznE?t=4790">Roc at the Berlin FP Meetup</a> - September 1, 2020 (overall
|
|
vision for the language)</li>
|
|
</ul>
|
|
<p>Roc also compiles to WebAssembly and you can try it out on the web <a href="repl/">here</a> (remembering it's not ready yet!)</p>
|
|
<p>You can check out the <a href="https://github.com/roc-lang/roc">source code repository</a> if you'd like to play around with it in its current state.</p>
|
|
</body>
|
|
|
|
</html>
|