1=begin
2 distributed Ruby --- Array
3 	Copyright (c) 1999-2001 Masatoshi SEKI
4=end
5
6require 'drb/drb'
7
8here = ARGV.shift
9DRb.start_service(here, [1, 2, "III", 4, "five", 6])
10puts DRb.uri
11DRb.thread.join
12
13