2 multiple DRbServer client
3 Copyright (c) 1999-2002 Masatoshi SEKI
12 $stderr.puts("usage: #{$0} <server_uri1> <server_uri2>")
17 r1 = DRbObject.new(nil, s1)
18 r2 = DRbObject.new(nil, s2)
20 p [r1.hello, r1.hello.to_s]
21 p [r2.hello, r2.hello.to_s]