ref: 6b84c3a6548f1c577948763b0a09a7b6e2460e04
dir: /module/dict.m/
Dictionary: module {
PATH: con "/dis/lib/dict.dis";
Dict: adt {
entries: list of (string, string);
add: fn( d: self ref Dict, e: (string, string) );
delete: fn( d: self ref Dict, k: string );
lookup: fn( d: self ref Dict, k: string ) :string;
keys: fn( d: self ref Dict ): list of string;
};
};