[REBOL] save/all
From: robert::muench::robertmuench::de at: 3-Apr-2004 13:48
Hi, IMO this is strange:
test: [a b c]
save-db: func [filename database][
save/all filename database
]
With this you will get an error:
** a has no value
save-db: func [filename 'database][
save/all filename database
]
This works WRT evaluation but give an other error I don't understand:
** rval needs a value
** Where: save
** Near: rval: do encloded-func
But save is a native! Does anybody know this problem? I put an attempt
block around the save/all statement and it works. The file is written
correctly. Robert