My project requires a file where I will store key/value pair data that should be able to be read and modified by the user. I want the program to just expect the keys to be t
if you want the user to be able to read and modify the file, i suggest a comma-delimited pair, one per line
key1,value1 key2,value2 ...
parsing is simple: read the file, split at newline or comma, then take the elements in pairs