the F stands 4 fuck
module AbsDictionaryDB
open System.Collections.Generic
type DictionaryDB(saveFunc, loadFunc) =
let db = Dictionary<string, string>()
member _.Save key value = saveFunc db key value
member _.Load key = loadFunc db key
// Example save/load logic
let defaultSave...