tutorial-index.xhtml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <!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">
  3. <head>
  4. <title>Kawa Scheme Tutorial</title>
  5. <link rel="stylesheet" type="text/css" href="docbook-epub.css"/>
  6. <link rel="stylesheet" type="text/css" href="kawa.css"/>
  7. <script src="kawa-ebook.js" type="text/javascript"/>
  8. <meta name="generator" content="DocBook XSL-NS Stylesheets V1.79.1"/>
  9. <link rel="prev" href="Overall-Index.xhtml" title="Index"/>
  10. <link rel="next" href="tutorial-Introduction.xhtml" title="Introduction"/>
  11. </head>
  12. <body>
  13. <header/>
  14. <section class="chapter" title="Kawa Scheme Tutorial" epub:type="chapter" id="Tutorial">
  15. <div class="titlepage">
  16. <div>
  17. <div>
  18. <h1 class="title">Kawa Scheme Tutorial</h1>
  19. </div>
  20. </div>
  21. </div>
  22. <p><span class="emphasis"><em>This is obviously incomplete, but it may be useful,
  23. especially if you’re starting with Kawa from scratch.</em></span>
  24. If you’re new to Scheme you might also check out one of these tutorials:
  25. Takafumi Shido’s
  26. <a class="ulink" href="http://www.shido.info/lisp/idx_scm_e.html" target="_top">Yet Another Scheme Tutorial</a>;
  27. 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
  28. 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>.
  29. </p>
  30. </section>
  31. <footer>
  32. <div class="navfooter">
  33. <ul>
  34. <li>
  35. <b class="toc">
  36. <a href="tutorial-Introduction.xhtml">Introduction</a>
  37. </b>
  38. </li>
  39. <li>
  40. <b class="toc">
  41. <a href="tutorial-Booleans.xhtml">Booleans</a>
  42. </b>
  43. </li>
  44. <li>
  45. <b class="toc">
  46. <a href="tutorial-Numbers.xhtml">Numbers</a>
  47. </b>
  48. </li>
  49. <li>
  50. <b class="toc">
  51. <a href="tutorial-Functions.xhtml">Functions</a>
  52. </b>
  53. </li>
  54. <li>
  55. <b class="toc">
  56. <a href="tutorial-Variables.xhtml">Variables</a>
  57. </b>
  58. </li>
  59. <li>
  60. <b class="toc">
  61. <a href="tutorial-Pictures.xhtml">Composable pictures</a>
  62. </b>
  63. </li>
  64. <li>
  65. <b class="toc">
  66. <a href="tutorial-Sequences.xhtml">Lists and sequences</a>
  67. </b>
  68. </li>
  69. <li>
  70. <b class="toc">
  71. <a href="tutorial-Objects.xhtml">Creating and using objects</a>
  72. </b>
  73. </li>
  74. <li>
  75. <b class="toc">
  76. <a href="tutorial-Types.xhtml">Types and declarations</a>
  77. </b>
  78. </li>
  79. <li>
  80. <b class="toc">
  81. <a href="tutorial-Exceptions-and-errors.xhtml">Exceptions and errors</a>
  82. </b>
  83. </li>
  84. <li>
  85. <b class="toc">
  86. <a href="tutorial-Classes.xhtml">Classes</a>
  87. </b>
  88. </li>
  89. <li>
  90. <b class="toc">
  91. <a href="tutorial-Other-Java-features.xhtml">Other Java features</a>
  92. </b>
  93. </li>
  94. </ul>
  95. <p>
  96. Up: <a accesskey="u" href="index.html">The Kawa Scheme language</a></p>
  97. <p>
  98. Previous: <a accesskey="p" href="Installation.xhtml">Getting and installing Kawa</a></p>
  99. <p>
  100. Next: <a accesskey="n" href="Overall-Index.xhtml">Index</a></p>
  101. </div>
  102. </footer>
  103. </body>
  104. </html>