summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/sample/drb/dqlib.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_6/sample/drb/dqlib.rb')
-rw-r--r--ruby_1_8_6/sample/drb/dqlib.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/ruby_1_8_6/sample/drb/dqlib.rb b/ruby_1_8_6/sample/drb/dqlib.rb
deleted file mode 100644
index 75f2e6115b..0000000000
--- a/ruby_1_8_6/sample/drb/dqlib.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class DQEntry
- def initialize(name)
- @name = name
- end
-
- def greeting
- "Hello, This is #{@name}."
- end
- alias to_s greeting
-end
-
-if __FILE__ == $0
- puts DQEntry.new('DQEntry')
-end