[#372] Store and load — "Michael Neumann" <neumann@...>
Hi...
8 messages
1999/06/02
[#386] UnixZone — gotoken@... (GOTO Kentaro)
Hi,
5 messages
1999/06/08
[ruby-talk:00402] Re: Forward: NOT MEMBER article from julian@cartotech.com (ruby-talk ML)
From:
Wakou Aoyama <wakou@...>
Date:
1999-06-28 09:11:26 UTC
List:
ruby-talk #402
Hello.
I am bad for english, then attach only simple sample code.
#!/usr/local/bin/ruby
require "telnet.rb"
require "thread.rb"
require "readline.so"
host = Telnet.new({ "Host" => "localhost" })
Thread.start do
STDOUT.sync = true
host.waitfor(nil){|c| STDOUT.print c }
end
loop do
line = Readline::readline("", TRUE)
host.print line
end
--
Wakou Aoyama <wakou@fsinet.or.jp>