[REBOL] Re: comments for beginner ugly code ;-)
From: sags::apollo::lv at: 17-Mar-2005 10:15
What if I want to place under repend result [ ]
following statement:
if error? try [
repend result read to-file join aDirectory join fileName form chapter-
info
][
repend result copy/part fileName back tail fileName
]
is it possible only with:
either error? try [
read to-file join aDirectory join fileName form chapter-info
][
copy/part fileName back tail fileName
][
read to-file join aDirectory join fileName form chapter-info
]
?
Janeks
On 15 Mar 2005 at 0:33, Anton Rolls wrote:
....