Post Reply 
The why is there a syntax error thread
02-19-2014, 05:13 AM
Post: #1
The why is there a syntax error thread
This thread is supposed to helpful for everyone who needs a quick help for a syntax error he can not resolve by himself. If you do come up with an answer for your own problem, it would be nice to post it here as well.


Ill start: Wink

unfortunately I am having trouble with a simple addition. I try to calculate "xmax=xmin+ymax" (non-sensical, just to get me started).

I tried:

EXPORT int2(xmin,xmax,ymin,yreal,ymax)
BEGIN
local xmin,xmax,ymin,ymax,xreal;
PRINT("oashio")
xmax:=xmin+ymax;
END;


and:

EXPORT int2(xmin,xmax,ymin,yreal,ymax)
BEGIN
local xmin,xmax,ymin,ymax,xreal;
PRINT("oashio")
xmin+ymax▶xmax;
END;


Similar to what's shown here
What's wrong?
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
The why is there a syntax error thread - DeucesAx - 02-19-2014 05:13 AM



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