Self
Self is an open source prototype based system in the
Smalltalk tradition and can be downloaded at http://self.sourceforge.net.
This page is a scratch pad for code written in Self.
At the moment, all there is is:
Webserver
Code. (webserver.self)
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.