[REBOL] Re: Blocks outside the box
From: lmecir:mbox:vol:cz at: 13-Jul-2003 8:23
Hi Carl,
> The rule applies to block level indentation, but at the same level, breaks
are permitted.
> That is, you could write all of these:
>
> 1 [2 2] 1
>
> 1
> [
> 2
> 2
> ]
> 1
>
> 1 [
> 2
> 2
> ] 1 ; (as in the case of more args to a func)
>
> Just not:
> 1 [
> 2
> 2
> ] 1
>
> The problem here is that a scan of the page hides the second 1. There is
no indentation
> visual hint that the code has returned to the prior level.
>
> -Carl
but this looks like an exception?
1 [
2
2]
-Ladislav