1=begin
2 distributed Ruby --- Queue
3 	Copyright (c) 1999-2000 Masatoshi SEKI
4=end
5
6require 'thread'
7require 'drb/drb'
8
9DRb.start_service(nil, Queue.new)
10puts DRb.uri
11DRb.thread.join
12
13