Self

Self is an open source prototype based system in the Smalltalk tradition and can be downloaded at http://selflanguage.org

This page is a scratch pad for code written in Self - my main code is maintained in the Self git repository at GitHub and accessible through the Self website above.

At the moment, all there is is:

Webserver

A very simple (indeed simplistic) web server.

Copy file to applications/ directory.
File in with: bootstrap read: 'webserver' From: 'applications'
Setup default with: webserver registerServlet: (webserver exampleServlets fileServlet copy) At: ''.
Start with: webserver start

Works in my copy of Self 4.3 on MacOS X 10.5.2. Your millage may vary.