index.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. layout: index
  3. title: Amber Smalltalk
  4. ---
  5. <div class="box">
  6. <h2>Getting started</h2>
  7. <div class="content">
  8. <p>The <a href="https://github.com/NicolasPetton/amber/wiki">Wiki on GitHub</a> includes a <a href="https://github.com/NicolasPetton/amber/wiki/Getting-started">Getting started</a> tutorial for OSX, Linux and Windows.</p>
  9. </div>
  10. <h2>Client-side usage</h2>
  11. <div class="content">
  12. <p>Load the full Amber Smalltalk environment with the IDE in your page:</p>
  13. {% highlight html %}<script src="js/amber.js" type="text/javascript"></script>
  14. <script type="text/javascript"> loadAmber()</script>{% endhighlight %}
  15. <p>Or the deployment JavaScript file only (without the Smalltalk sources, parser, compiler and IDE):</p>
  16. {% highlight html %}<script src="js/amber.js" type="text/javascript"></script>
  17. <script type="text/javascript"> loadAmber({deploy: true})</script>{% endhighlight %}
  18. <p>Read the <a href="documentation.html">documentation</a> to learn more about writing applications in Amber.</p>
  19. </div>
  20. </div>
  21. <div class="box last">
  22. <h2 id="download">Download</h2>
  23. <div class="content">
  24. <p>You can get a copy of Amber from github or clone the <a href="http://github.com/NicolasPetton/amber">git repository</a>.</p>
  25. <a href="http://github.com/NicolasPetton/amber/zipball/master">
  26. <img border="0" width="90" src="http://github.com/images/modules/download/zip.png"></a>
  27. <a href="http://github.com/NicolasPetton/amber/tarball/master">
  28. <img border="0" width="90" src="http://github.com/images/modules/download/tar.png"></a>
  29. </div>
  30. </div>