index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <!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">
  2. <head>
  3. <title>The Kawa Scheme language</title>
  4. <link rel="stylesheet" type="text/css" href="docbook-epub.css"/>
  5. <link rel="stylesheet" type="text/css" href="kawa.css"/>
  6. <script src="kawa-ebook.js" type="text/javascript"> </script>
  7. <meta name="generator" content="DocBook XSL-NS Stylesheets V1.79.1"/>
  8. <link rel="prev" href="top.html" title="The Kawa Scheme language"/>
  9. <link rel="next" href="news.xhtml" title="News - Recent Changes"/>
  10. </head>
  11. <body>
  12. <header/>
  13. <section class="chapter" title="The Kawa Scheme language" epub:type="chapter" id="Top">
  14. <div class="titlepage">
  15. <div>
  16. <div>
  17. <h1 class="title">The Kawa Scheme language</h1>
  18. </div>
  19. </div>
  20. </div>
  21. <p>Kawa is a general-purpose programming language that runs on the Java platform.
  22. It aims to combine:
  23. </p>
  24. <div class="itemizedlist" epub:type="list">
  25. <ul class="itemizedlist" style="list-style-type: disc; ">
  26. <li class="listitem" epub:type="list-item">
  27. <p>the benefits of dynamic scripting languages
  28. (non-verbose code with less boiler-plate, fast and easy start-up,
  29. a <a class="ulink" href="http://en.wikipedia.org/wiki/Read-eval-print_loop" target="_top">REPL</a>,
  30. no required compilation step); with
  31. </p>
  32. </li>
  33. <li class="listitem" epub:type="list-item">
  34. <p>the benefits of traditional compiled languages (fast execution, static error detection,
  35. modularity, zero-overhead Java platform integration).
  36. </p>
  37. </li>
  38. </ul>
  39. </div>
  40. <p>It is an extension of the long-established <a class="ulink" href="http://www.schemers.org/" target="_top">Scheme</a>
  41. language, which is in the Lisp family of programming languages.
  42. Kawa has many <a class="link" href="Features.xhtml" title="Features">useful features</a>.
  43. </p>
  44. <p>Kawa is also a useful <a class="link" href="Framework.xhtml" title="The Kawa language framework">framework</a> for implementing
  45. other programming languages on the Java platform.
  46. It has many useful utility classes.
  47. </p>
  48. <p>This manual describes version 2.92_invoke, updated 26 April 2017.
  49. See the summary of <a class="link" href="news.xhtml" title="News - Recent Changes">recent changes</a>.
  50. </p>
  51. <p>The <a class="link" href="tutorial-index.xhtml" title="Kawa Scheme Tutorial">Kawa tutorial</a> is useful to get stated.
  52. While it is woefully incomplete, it does link to some other more in-depth
  53. (but not Kawa-specific) Scheme tutorials.
  54. </p>
  55. <p>For copyright information on the software and documentation,
  56. see <a class="link" href="License.xhtml" title="License">License</a>.
  57. </p>
  58. <p>Various people and orgnizations <a class="link" href="Acknowledgements.xhtml" title="Acknowledgements and thanks">have contributed to Kawa</a>.
  59. </p>
  60. <p>This package has nothing to do with the defunct Kawa commercial Java IDE.
  61. </p>
  62. </section>
  63. <footer>
  64. <div class="navfooter">
  65. <ul>
  66. <li>
  67. <b class="toc">
  68. <a href="news.xhtml">News - Recent Changes</a>
  69. </b>
  70. </li>
  71. <li>
  72. <b class="toc">
  73. <a href="Features.xhtml">Features</a>
  74. </b>
  75. </li>
  76. <li>
  77. <b class="toc">
  78. <a href="Community.xhtml">The Kawa Community</a>
  79. </b>
  80. </li>
  81. <li>
  82. <b class="toc">
  83. <a href="Installation.xhtml">Getting and installing Kawa</a>
  84. </b>
  85. </li>
  86. <li>
  87. <b class="toc">
  88. <a href="tutorial-index.xhtml">Kawa Scheme Tutorial</a>
  89. </b>
  90. </li>
  91. <li>
  92. <b class="toc">
  93. <a href="pt01.xhtml">Reference Documentation</a>
  94. </b>
  95. </li>
  96. <li>
  97. <b class="toc">
  98. <a href="Overall-Index.xhtml">Index</a>
  99. </b>
  100. </li>
  101. <li>
  102. <b class="toc">
  103. <a href="ToC.xhtml">Table of Contents</a>
  104. </b>
  105. </li>
  106. </ul>
  107. <p>
  108. Next: <a accesskey="n" href="news.xhtml">News - Recent Changes</a></p>
  109. </div>
  110. </footer>
  111. </body>
  112. </html>