Post Reply 
compile order problem
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;
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)