summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/sample/dbmtest.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_6/sample/dbmtest.rb')
-rw-r--r--ruby_1_8_6/sample/dbmtest.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/ruby_1_8_6/sample/dbmtest.rb b/ruby_1_8_6/sample/dbmtest.rb
new file mode 100644
index 0000000000..c77cc2065b
--- /dev/null
+++ b/ruby_1_8_6/sample/dbmtest.rb
@@ -0,0 +1,14 @@
+# 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
+