[EMAIL PROTECTED] wrote: > Can someone explain to Perl-brained person why the first expression is in > parenthesis and the second one is in blocks? it's simple - if condition [block to do] you have to use (), as in other case rebol would perform path <> "/" first, result of which would be returned to back tail, resulting in error. You can write it also in the following way: if (last path) <> "/" [append path "/"] -pekr- > > > I know it must be somewhere in some manual page, but, forgive me. Please.
