compile order problem
|
09-26-2015, 01:42 PM
Post: #1
|
|||
|
|||
compile order problem
order problem
EXPORT TX=0; //EXPORT TOTTER; //doesnt work //EXPORT TOTTER(); //doesnt work EXPORT TEETER() BEGIN IF TX>4 THEN RETURN TX; ELSE TOTTER(); // <- error here END; END; EXPORT TOTTER() BEGIN IF TX>4 THEN TX:=TX+1; RETURN TX; ELSE TEETER(); END; Does anyone know how to make this compile? Its not about recursion but about order of compilation and lack of declarations. I have seversl "files" whick cross call routines and csnt conrol the order. of compilation. Using two different files also fails since neither succeeds. I work with android Prime only for now on my Galaxy Tab Pro/Note 2 |
|||
09-26-2015, 02:25 PM
(This post was last modified: 09-26-2015 02:30 PM by DrD.)
Post: #2
|
|||
|
|||
RE: compile order problem
One way:
Code:
-Dale- |
|||
09-26-2015, 02:27 PM
(This post was last modified: 09-26-2015 02:29 PM by xset.)
Post: #3
|
|||
|
|||
RE: compile order problem
The solution:
EXPORT TX=0; TOTTER(); // forward declaration, no need for EXPORT here EXPORT TEETER() BEGIN IF TX>4 THEN RETURN TX; ELSE TOTTER(); // no error END; END; EXPORT TOTTER() BEGIN IF TX>4 THEN TX:=TX+1; RETURN TX; ELSE TEETER(); END; // u forgot second END here ??? END; |
|||
09-26-2015, 02:34 PM
Post: #4
|
|||
|
|||
RE: compile order problem
Thanx to both.
Didnt try the bare decl. If they are in different files will export work.? I work with android Prime only for now on my Galaxy Tab Pro/Note 2 |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)