Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 2246

Macaulay2-1.3.1-8.fc15.i686.rpm

-- -*- M2-comint -*- {* hash: -744305248 *}

i1 : filename = temporaryFileName () | ".dbm"

o1 = /tmp/M2-22058-1.dbm

i2 : x = openDatabaseOut filename

o2 = /tmp/M2-22058-1.dbm

o2 : Database

i3 : x#"first" = "hi there"

o3 = hi there

i4 : x#"first"

o4 = hi there

i5 : x#"second" = "ho there"

o5 = ho there

i6 : scanKeys(x,print)
second
first

i7 : remove(x,"second")

i8 : scanKeys(x,print)
first

i9 : close x

o9 = 0

i10 : removeFile filename

i11 :