Hi!

When I write my code I often put things like [IF] [THEN] for conditional 
compilation. 
And constructs like:
[IFDEF] debug
...
several lines of code
...
[THEN]
Are not uncommon in my code.

However when I needed to fill up a data structure while my file is being 
interpreted
I have noticed the following behavior in bigforth:

10 0 [do] ... lines of code smashed into one line ... [loop] - this works
10 0 [do]
...
several lines of code
...
[loop] - this does not

Is it possible at all to make the second version of loop working? Would be nice 
if it would.
For consistency with [IF] and for bigger usability.

-- 
Sergey


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to