On Fri, Jan 04, 2002 at 09:55:11PM +0000, Dexter wrote:

> OS:
> This is much more vague, because it isn't "my area", but I'd be looking
> for modularisation of the OS. I'd like it to be much easier to write
> device drivers and modules. I would be looking for SuperBASIC, compilable.
> The filing system could be all-new, taking advantage of the IDE interface.
> LS-120 drives would be the standard, and would replace floppies.
> 
> Things like:
>   open #3, eth0_192.168.1.1
>   print #3, "XXX"
>   close #3

it looks a bit differently in UQLX but I think it does what you
want:

10 OPEN_IN#4,"tcp_www.geocities.com:80"
15 PRINT#4,"GET /"
17 PRINT#4
18 REPeat cc
19 IF EOF(#4):EXIT cc
20 INPUT#4,a$:PRINT a$
30 END REPeat cc
40 CLOSE#4


Bye
Richard

Reply via email to