Importing Rather Than Loading

It might be more convenient to import your data like any other library module.
Main.oz
functor
import
  Application Pickle System
  Data at 'x-ozlib://duchier/DataApp/Data.ozf'
define
   {System.show Data.info}
   {Application.exit 0}
end
Data.oz
functor
export Info
define
Info = info('Frank' # 23  # true
            'Mary'  # 26  # true
            'John'  # 20  # false)
end