aboutsummaryrefslogtreecommitdiffstats
path: root/sample/mrshtest.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 02:57:15 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 02:57:15 +0000
commit3a067a52788c18be1c74649ba3b2010b3ef19fdc (patch)
treeef4c65a35cf4de94a275a3fd23293a0f250380e2 /sample/mrshtest.rb
parent29ba327bd16fd7eb7114050724e4784bdcaac83a (diff)
downloadruby-3a067a52788c18be1c74649ba3b2010b3ef19fdc.tar.gz
* sample/README: removed obsoleted files: dbmtest.rb,
getopts.test, mrshtest.rb, regx.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/mrshtest.rb')
-rw-r--r--sample/mrshtest.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/sample/mrshtest.rb b/sample/mrshtest.rb
deleted file mode 100644
index 8d2dc9936b..0000000000
--- a/sample/mrshtest.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-include Marshal
-a = 25.6;
-pt = Struct.new('Point', :x,:y);
-x = pt.new(10, 10)
-y = pt.new(20, 20)
-rt = Struct.new('Rectangle', :origin,:corner);
-z = rt.new(x, y)
-c = Object.new
-s = [a, x, z, c, c, "fff"];
-p s
-d = dump(s);
-p d
-p load(d)