Post Reply 
New to programming...help !
05-18-2015, 10:39 PM
Post: #1
New to programming...help !
Tried to print ticks divided by 1000 yet get a line of zero's ?. What is wrong with the below ?. Also what is the command to print at a particular location on the screen ?.


EXPORT TEST()
BEGIN
LOCAL TIC;

PRINT();

REPEAT
TIC=TICKS();
TIC=TIC/1000;
PRINT(TIC);
UNTIL GETKEY >-1;
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
New to programming...help ! - Digitaldreams - 05-18-2015 10:39 PM



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