|
From: Manuel T. <ma...@sp...> - 2001-01-31 17:55:50
|
Hi
Just to tell you that there is some new stuff in CVS if you want to check it out:
* Processes
* Signals
an example:
s = Signal new.
s connect: {"Hello" println}.
s connect: {"Goodbye" println}.
{"Here" println. s wait. "There" println}.
10 do: {"nothing" print}.
s signal.
* Sockets
Example of server:
connection = Socket TCPServer port: 7000; accept.
Example of client:
connection = Socket TCPSocket host: "localhost" port: 7000.
* Hashtables & Sets
example:
t = Hashtable new.
t at: "me" put: "it".
t at: "me"; println
* Bound Methods
example:
g = 1 method: :+ .
g (4); println
(But a warning, all of the above have bugs and some are incomplete :-( but I am
working on that...)
Manuel
|