Creating Pickles with the Compiler

FILE.oz
%%    NAME   # AGE # MARRIED?

info('Frank' # 23  # true
     'Mary'  # 26  # true
     'John'  # 20  # false)
Compile FILE.oz:
ozc -c FILE.oz -o FILE.bin
Again, you can load this pickled value from e.g. the OPI:
declare DATA = {Pickle.load "FILE.bin"}