%% NAME # AGE # MARRIED?
declare DATA = info('Frank' # 23 # true
'Mary' # 26 # true
'John' # 20 # false)
We can save this data to a file in a binary format: this is called a
pickle
{Pickle.save DATA "/tmp/MyData.bin"}
Then, we can load this saved data from the file:
declare DATA = {Pickle.load "/tmp/MyData.bin"}