Prepare And Define Sections

When large amounts of data are involved, it is best to compute them at compile-time if at all possible.
Data.oz
functor
export Info
prepare
Info = info('Frank' # 23  # true
            'Mary'  # 26  # true
            'John'  # 20  # false)
end