diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 02:57:15 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-25 02:57:15 +0000 |
| commit | c0c0975d0b75cbdaabc18491c140b70c26b486e1 (patch) | |
| tree | ef4c65a35cf4de94a275a3fd23293a0f250380e2 /sample/dbmtest.rb | |
| parent | a962457e7beb326fffbee500ed9fc6e9af1a72de (diff) | |
| download | ruby-c0c0975d0b75cbdaabc18491c140b70c26b486e1.tar.gz ruby-c0c0975d0b75cbdaabc18491c140b70c26b486e1.tar.xz ruby-c0c0975d0b75cbdaabc18491c140b70c26b486e1.zip | |
* sample/README: removed obsoleted files: dbmtest.rb,
getopts.test, mrshtest.rb, regx.rb.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/dbmtest.rb')
| -rw-r--r-- | sample/dbmtest.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sample/dbmtest.rb b/sample/dbmtest.rb deleted file mode 100644 index c77cc2065..000000000 --- a/sample/dbmtest.rb +++ /dev/null @@ -1,14 +0,0 @@ -# ruby dbm acess -require "dbm" - -d = DBM.open("test") -keys = d.keys -if keys.length > 0 then - for k in keys; print k, "\n"; end - for v in d.values; print v, "\n"; end -else - d['foobar'] = 'FB' - d['baz'] = 'BZ' - d['quux'] = 'QX' -end - |
