i1 : filename = tmpname "test.dbm" o1 = /tmp/8346test.dbm o1 : String
i2 : x = openDatabaseOut filename o2 = --database /tmp/8346test.dbm-- o2 : Database
i3 : x#"first" = "hi there" o3 = hi there o3 : String
i4 : x#"first" o4 = hi there o4 : String
i5 : x#"second" = "ho there" o5 = ho there o5 : String
i6 : scanKeys(x,print) first second
i7 : close x o7 = 0
i8 : run ("rm -f " | filename) o8 = 0