[REBOL] Re: Object/Path? question
From: moliad:g:mail at: 4-Sep-2007 23:49
another way to look at this, is to build yourself a prefab config and
default to it, this has the advantage of allowing your config file to be
optional and to be extensible:
ex:
default: context [
visible?: true
saved?: true
setting1: none
]
either config-file: attempt [ make object! load %my-app.cfg ] [
config: make default third config-file
][
print "CONFIG FILE ERROR"
config: default
]
-MAx
On 9/1/07, Kai Peters <kpeters-otaksoft.com> wrote: