summaryrefslogtreecommitdiff
path: root/bucky2/t/poot.pl
blob: 30eefb8ffd8c591c82fcb1fff90c40e667d507c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use strict;
use DB_File;

my %X;


tie %X, "DB_File", "gross.db", O_CREAT|O_RDWR, 0666, $DB_HASH ;
print "one:$X{'fie'}\n";


$X{'fie'} = "fum";
print "two:$X{'fie'}\n";