123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?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>Kawa Scheme Tutorial</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="tutorial-Introduction.xhtml" title="Introduction"/>
- </head>
- <body>
- <header/>
- <section class="chapter" title="Kawa Scheme Tutorial" epub:type="chapter" id="Tutorial">
- <div class="titlepage">
- <div>
- <div>
- <h1 class="title">Kawa Scheme Tutorial</h1>
- </div>
- </div>
- </div>
- <p><span class="emphasis"><em>This is obviously incomplete, but it may be useful,
- especially if you’re starting with Kawa from scratch.</em></span>
- If you’re new to Scheme you might also check out one of these tutorials:
- Takafumi Shido’s
- <a class="ulink" href="http://www.shido.info/lisp/idx_scm_e.html" target="_top">Yet Another Scheme Tutorial</a>;
- Dorai Sitaram’s <a class="ulink" href="http://www.ccs.neu.edu/home/dorai/t-y-scheme/t-y-scheme-Z-H-1.html" target="_top">Teach Yourself Scheme in Fixnum Days</a>; or
- Paul Wilson’s <a class="ulink" href="ftp://ftp.cs.utexas.edu/pub/garbage/cs345/schintro-v14/schintro_toc.html" target="_top">An Introduction to Scheme and its Implementation</a>.
- </p>
- </section>
- <footer>
- <div class="navfooter">
- <ul>
- <li>
- <b class="toc">
- <a href="tutorial-Introduction.xhtml">Introduction</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Booleans.xhtml">Booleans</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Numbers.xhtml">Numbers</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Functions.xhtml">Functions</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Variables.xhtml">Variables</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Pictures.xhtml">Composable pictures</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Sequences.xhtml">Lists and sequences</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Objects.xhtml">Creating and using objects</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Types.xhtml">Types and declarations</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Exceptions-and-errors.xhtml">Exceptions and errors</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Classes.xhtml">Classes</a>
- </b>
- </li>
- <li>
- <b class="toc">
- <a href="tutorial-Other-Java-features.xhtml">Other Java features</a>
- </b>
- </li>
- </ul>
- <p>
- Up: <a accesskey="u" href="index.html">The Kawa Scheme language</a></p>
- <p>
- Previous: <a accesskey="p" href="Installation.xhtml">Getting and installing Kawa</a></p>
- <p>
- Next: <a accesskey="n" href="Overall-Index.xhtml">Index</a></p>
- </div>
- </footer>
- </body>
- </html>
|