| I've added client-socket to rainbow, so you can open client network connections. And thus build your own arc forum browser in arc: (let (i o) (client-socket "arclanguage.org" 80)
(disp "GET /forum HTTP/1.1\r\n\r\n" o)
(pr (readstring i)))
(where 'readstring is a function that concats everything from its input stream until eof)Also, incremental-search is working properly again in welder after a recent increase in argument-count fussiness broke it. |