Post Reply 
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
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
compile order problem - ji3m - 09-26-2015 01:42 PM
RE: compile order problem - DrD - 09-26-2015, 02:25 PM
RE: compile order problem - xset - 09-26-2015, 02:27 PM
RE: compile order problem - ji3m - 09-26-2015, 02:34 PM



User(s) browsing this thread: 1 Guest(s)