123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!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 language framework</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"/>
- <meta name="generator" content="DocBook XSL-NS Stylesheets V1.79.1"/>
- <link rel="prev" href="Overall-Index.xhtml" title="Index"/>
- <link rel="next" href="License.xhtml" title="License"/>
- </head>
- <body>
- <header/>
- <section class="chapter" title="The Kawa language framework" epub:type="chapter" id="Framework">
- <div class="titlepage">
- <div>
- <div>
- <h2 class="title">The Kawa language framework</h2>
- </div>
- </div>
- </div>
- <p>Kawa is a framework written in Java for implementing
- high-level and dynamic languages, compiling them into Java bytecodes.
- </p>
- <p>The Kawa distributions includes of other programming languages
- besides Scheme,
- including <a class="ulink" href="../qexo/index.html" target="_top">XQuery (Qexo)</a>
- and <a class="ulink" href="http://JEmacs.sourceforge.net/" target="_top">Emacs Lisp (JEmacs)</a>.
- </p>
- <p>For a technical overview of Kawa, see these
- <a class="ulink" href="http://www.gnu.org/software/kawa/internals/index.html" target="_top">http://www.gnu.org/software/kawa/internals/index.html</a>.
- Javadoc generated <a class="ulink" href="http://www.gnu.org/software/kawa/api/" target="_top">documentation of the Kawa classes</a> is also available.
- The packages
- <a class="ulink" href="http://www.gnu.org/software/kawa/api/gnu/bytecode/package-summary.html" target="_top"><code class="literal">gnu.bytecode</code></a>,
- <a class="ulink" href="http://www.gnu.org/software/kawa/api/gnu/math/package-summary.html" target="_top"><code class="literal">gnu.math</code></a>,
- <a class="ulink" href="http://www.gnu.org/software/kawa/api/gnu/lists/package-summary.html" target="_top"><code class="literal">gnu.lists</code></a>,
- <a class="ulink" href="http://www.gnu.org/software/kawa/api/gnu/xml/package-summary.html" target="_top"><code class="literal">gnu.xml</code></a>,
- <a class="ulink" href="http://www.gnu.org/software/kawa/api/gnu/expr/package-summary.html" target="_top"><code class="literal">gnu.expr</code></a>,
- <a class="ulink" href="http://www.gnu.org/software/kawa/api/gnu/mapping/package-summary.html" target="_top"><code class="literal">gnu.mapping</code></a>,
- and
- <a class="ulink" href="http://www.gnu.org/software/kawa/api/gnu/text/package-summary.html" target="_top"><code class="literal">gnu.text</code></a>,
- are used by Kawa, and distributed with it, but may be independently useful.
- </p>
- <p>This <a class="ulink" href="gnu.bytecode/compiling-regexps.html" target="_top">article</a> explains how to
- use <code class="literal">gnu.bytecode</code> to compile regular expressions to bytecode.
- </p>
- </section>
- <footer>
- <div class="navfooter">
- <p>
- Up: <a accesskey="u" href="pt01.xhtml">Part . Reference Documentation</a></p>
- <p>
- Previous: <a accesskey="p" href="FAQs.xhtml">Frequently Asked Questions</a></p>
- <p>
- Next: <a accesskey="n" href="License.xhtml">License</a></p>
- </div>
- </footer>
- </body>
- </html>
|