Files
wren/contributing.html

82 lines
3.3 KiB
HTML
Raw Normal View History

2013-12-04 07:46:41 -08:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
2015-01-01 21:04:14 -08:00
<title>Contributing Wren</title>
2013-12-04 07:46:41 -08:00
<link rel="stylesheet" type="text/css" href="style.css" />
2014-08-19 07:35:20 -07:00
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic,700italic|Source+Code+Pro:400|Lato:400|Sanchez:400italic,400' rel='stylesheet' type='text/css'>
<!-- Tell mobile browsers we're optimized for them and they don't need to crop
the viewport. -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
2013-12-04 07:46:41 -08:00
</head>
<body id="top">
2014-04-14 21:23:46 -07:00
<header>
<div class="page">
2014-04-20 21:42:17 -07:00
<div class="main-column">
2014-08-19 07:35:20 -07:00
<h1><a href="index.html">wren</a></h1>
<h2>a classy little scripting language</h2>
2014-04-14 21:23:46 -07:00
</div>
</div>
2014-08-19 07:35:20 -07:00
</header>
2014-04-14 21:23:46 -07:00
<div class="page">
2014-04-20 21:42:17 -07:00
<nav>
2013-12-04 07:46:41 -08:00
<ul>
2014-04-09 07:53:30 -07:00
<li><a href="getting-started.html">Getting Started</a></li>
2013-12-04 07:46:41 -08:00
</ul>
2014-08-19 07:35:20 -07:00
<section>
<h2>language</h2>
<ul>
<li><a href="syntax.html">Syntax</a></li>
2015-01-03 23:27:54 -08:00
<li><a href="expressions.html">Expressions</a></li>
2014-08-19 07:35:20 -07:00
<li><a href="variables.html">Variables</a></li>
2015-01-03 23:27:54 -08:00
<li><a href="control-flow.html">Control Flow</a></li>
2014-08-19 07:35:20 -07:00
<li><a href="error-handling.html">Error Handling</a></li>
</ul>
</section>
<section>
<h2>types</h2>
<ul>
<li><a href="values.html">Values</a></li>
<li><a href="classes.html">Classes</a></li>
<li><a href="fibers.html">Fibers</a></li>
<li><a href="functions.html">Functions</a></li>
<li><a href="lists.html">Lists</a></li>
<li><a href="maps.html">Maps</a></li>
</ul>
</section>
<section>
<h2>reference</h2>
<ul>
<li><a href="core-library.html">Core Library</a></li>
2014-08-19 07:35:20 -07:00
<li><a href="embedding-api.html">Embedding API</a></li>
<li><a href="performance.html">Performance</a></li>
<li><a href="contributing.html">Contributing</a></li>
<li><a href="qa.html">Q &amp; A</a></li>
</ul>
</section>
</nav>
2014-04-20 21:42:17 -07:00
<main>
2015-01-01 21:04:14 -08:00
<h1>Contributing</h1>
2015-01-03 23:27:54 -08:00
<p>It should be obvious by now that Wren is under active development and there's
lots left to do. I'd be delighted to have your help.</p>
<p>Wren uses the OSI-approved <a href="http://opensource.org/licenses/MIT">MIT license</a>. I'm not sure exactly what that
means, but I went with the most permissive license I could find.</p>
<p>The source is developed <a href="https://github.com/munificent/wren">on GitHub</a>. My hope is that the codebase,
tests, and documentation are easy to understand and contribute to. If they
aren't, that's a bug. If you're looking for somewhere to get started, try
writing some example programs in Wren and see what rough spots you run into.
You can also look through to code for <code>// TODO</code> or help improve
<a href="https://github.com/munificent/wren/tree/master/doc/site">these docs</a>.</p>
<p>If you have questions, feel free to <a href="https://github.com/munificent/wren/issues">file an issue</a> or email me
(<code>robert</code> at <code>stuffwithstuff.com</code>).</p>
</main>
2014-04-14 21:23:46 -07:00
</div>
<footer>
<div class="page">
2014-08-19 07:35:20 -07:00
<div class="main-column">
<p>Wren lives <a href="https://github.com/munificent/wren">on GitHub</a> &mdash; Made with &#x2764; by <a href="http://journal.stuffwithstuff.com/">Bob Nystrom</a>.</p>
2014-08-19 07:35:20 -07:00
<div class="main-column">
2014-04-14 21:23:46 -07:00
</div>
</footer>
2013-12-04 07:46:41 -08:00
</body>
</html>