Re: Forward reference to included function
- Posted by mattlewis (admin) Jan 15, 2014
- 1569 views
_tom said...
This I don't understand:
It suggests to me that this should work:
foo() procedure foo() ? x end procedure atom x = 1 -- variable x has not been assigned a value
You got an error, but not because of scope. The error was due to execution order and the variable not being assigned before it was used.
Matt