123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns:pls="http://www.w3.org/2005/01/pronunciation-lexicon" xmlns:ssml="http://www.w3.org/2001/10/synthesis" xmlns:svg="http://www.w3.org/2000/svg">
- <head>
- <title>The Kawa Scheme language</title>
- <link rel="stylesheet" type="text/css" href="docbook-epub.css"/>
- <link rel="stylesheet" type="text/css" href="kawa.css"/>
- <script src="kawa-ebook.js" type="text/javascript"> </script>
- <meta name="generator" content="DocBook XSL-NS Stylesheets V1.79.1"/>
- <link rel="prev" href="top.html" title="The Kawa Scheme language"/>
- <link rel="next" href="news.xhtml" title="News - Recent Changes"/>
- </head>
- <body>
- <header/>
- <section class="chapter" title="The Kawa Scheme language" epub:type="chapter" id="Top">
- <div class="titlepage">
- <div>
- <div>
- <h1 class="title">The Kawa Scheme language</h1>
- </div>
- </div>
- </div>
- <p>Kawa is a general-purpose programming language that runs on the Java platform.
- It aims to combine:
- </p>
- <div class="itemizedlist" epub:type="list">
- <ul class="itemizedlist" style="list-style-type: disc; ">
- <li class="listitem" epub:type="list-item">
- <p>the benefits of dynamic scripting languages
- (non-verbose code with less boiler-plate, fast and easy start-up,
- a <a class="ulink" href="http://en.wikipedia.org/wiki/Read-eval-print_loop" target="_top">REPL</a>,
- no required compilation step); with
- </p>
- </li>
- <li class="listitem" epub:type="list-item">
- <p>the benefits of traditional compiled languages (fast execution, static error detection,
- modularity, zero-overhead Java platform integration).
- </p>
- </li>
- </ul>
- </div>
- <p>It is an extension of the long-established <a class="ulink" href="http://www.schemers.org/" target="_top">Scheme</a>
- language, which is in the Lisp family of programming languages.
- Kawa has many <a class="link" href="Features.xhtml" title="Features">useful features</a>.
- </p>
- <p>Kawa is also a useful <a class="link" href="Framework.xhtml" title="The Kawa language framework">framework</a> for implementing
- other programming languages on the Java platform.
- It has many useful utility classes.
- </p>
- <p>This manual describes version 2.92_invoke, updated 26 April 2017.
- See the summary of <a class="link" href="news.xhtml" title="News - Recent Changes">recent changes</a>.
- </p>
- <p>The <a class="link" href="tutorial-index.xhtml" title="Kawa Scheme Tutorial">Kawa tutorial</a> is useful to get stated.
- While it is woefully incomplete, it does link to some other more in-depth
- (but not Kawa-specific) Scheme tutorials.
- </p>
- <p>For copyright information on the software and documentation,
- see <a class="link" href="License.xhtml" title="License">License</a>.
- </p>
- <p>Various people and orgnizations <a class="link" href="Acknowledgements.xhtml" title="Acknowledgements and thanks">have contributed to Kawa</a>.
- </p>
- <p>This package has nothing to do with the defunct Kawa commercial Java IDE.
- </p>
- </section>
- <footer>
- <div class="navfooter">
- <ul>
- <li>
- <b class="toc">
- <a href="news.xhtml">News - Recent Changes</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="Features.xhtml">Features</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="Community.xhtml">The Kawa Community</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="Installation.xhtml">Getting and installing Kawa</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-index.xhtml">Kawa Scheme Tutorial</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="pt01.xhtml">Reference Documentation</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="Overall-Index.xhtml">Index</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="ToC.xhtml">Table of Contents</a>
- </b>
- </li>
- </ul>
- <p>
- Next: <a accesskey="n" href="news.xhtml">News - Recent Changes</a></p>
- </div>
- </footer>
- </body>
- </html>
|