1. Introduction

Contents of this section

The aim of this document is to answer to the frequently asked questions about STk. First versions of this document were written by Marc Furrer (furrer@di.epfl.ch) with the support of Erick Gallesio (eg@unice.fr) Marc has not enough time to continue to maintain the FAQ up to date and he asked me to continue. Since I too have not a lot of time for keeping the FAQ alive, any help would be greatly apreciated.

The latest version of the FAQ is available at http://kaolin.unice.fr/FAQ/FAQ.html Text and Postscript versions of this document are also available at ftp://kaolin.unice.fr/pub/FAQ The HTML version is the recommended version of this document since all the links to other documents or softwares can be followed just by clicking on them.

This version of the document is very incomplete and if you think of questions that are appropriate for this FAQ, or would like to improve an answer, please send me e-mail.

1.1 Subject: What is STk

STk is a R4RS Scheme interpreter which can access to the Tk graphical package. It can be seen as the John Ousterhout's Tk package where the Tcl language has been replaced by Scheme (for more information on Scheme, Tcl and Tk, see the references below).

STk also provides an efficient object oriented system called STklos. STklos is an OO system with multi-inheritance, generic functions, multi-methods. It's implementation relies on a Meta Object Protocol (MOP) inspired from the Tiny -CLOS model.

Other features of STk are:

1.2 Subject: Where do I get STk from

STk distribution is available on various sites. The official distribution site is http://kaolin.unice.fr/ or ftp://kaolin.unice.fr/pub Distribution file names have the form STk-x.y.tar.gz, where x and y represent the version and the release of the package. You can also find here interim releases of STk. Intermediate releases are stored in file whose name have the form STk-x.y.z.tar.gz where z is the intermediate release number. Last stable release can be taken from http://kaolin.unice.fr/STk.tar.gz or ftp://kaolin.unice.fr/pub/STk.tar.gz

1.3 Subject: Are there distribution mirror sites

Stable releases of STk are also placed in ftp://sunsite.unc.edu/pub/Linux/devel/lang/lisp Since this site is eavily mirrored around the planet, you should easily find a stable release near you.

David Fox also maintain a mirror site of kaolin (daily updated) in the USA at the following URL ftp://cs.nyu.edu/pub/local/fox/stk

1.4 Subject: Which are the systems STk support

STk runs on a large variety of Unixes. It is known to run on:

1.5 Subject: STk and Windows

Starting with release 3.1, STk runs on 32 bits Microsoft Windows (only tested on Windows 95, but it should run on Windows NT). This version is based on the Tk 4.1 final release.

STk Win32 version is distributed in source and binary forms, since binary release seems more convenient on Windows.

Development of STk on this platform is not easy for me since it is not the system I use dayly. In particular, a lot of work need to be done (loading of packages compiled in DLL, sockets, ...). Help of a Win32 hacker would be greatly appreciated to achieve those tasks.

1.6 Subject: STk and MacOS

It is not intended to port STk on MAcOS, by lack of resource (and interest of myself :). However, port should be simple for a Mac hacker. I can provide help if necessary for this job.

Another way to run STk on a Mac consists to run STk under Mach Ten. If I have well understood, Mach Ten is a Unix (Mach-) like system running on top of MacOS. STk compiles fine on this system.

1.7 Subject: Getting more information about Scheme

The R4RS document

The Scheme Repository

The main site where you can find (many) informations about Scheme is located in the University of Indiana. The Scheme repository is maintained by David Eby. The repository currently consists of the following areas:

You can access the Scheme repository at:

The Scheme Repository is mirrored in Europe at:

Usenet newsgroup and other addresses

There is a usenet newsgroup about the Scheme Programming language: comp.lang.scheme

Miscelleanous

Following addresses contains also interesting material about the Scheme language

1.8 Subject: Differences with R4RS

Symbols

STk symbol syntax has been augmented to allow case significant symbols. Many global symbols have been added to the global environment, see Appendix B of the STk Reference Manual.

Types

STk implements all the types defined as mandatory in R4RS. However, complex numbers and rational numbers (which are defined but not required in R4RS) are not implemented. The lack of these types implies that some functions of R4RS are not defined.

Some types which are not defined in R4RS are implemented in STk. Those types are listed below:

Procedures

The following procedures are required by R4RS and are not implemented in the STk interpreter:

These procedure can be easily simulated with various Unix tools such as script or fep.

The following procedures are not implemented in the STk interpreter whereas they are defined in R4RS (but not required). They are all related to complex or rational numbers:

This is more detailed in the Appendix B of the STk Reference Manual.

1.9 Subject: Compatibility with SLIB

Aubrey Jaffer maintains a package called SLIB which is a portable Scheme library which provides compatibility and utility functions for all standard Scheme implementations. To use this package, you have just to type

(require "slib")

and follow the instructions given in the library to use a particular package.


Next Chapter

Table of contents of this chapter, General table of contents

Top of the document, Beginning of this Chapter