Post Reply 
TERMINAL view still does not work
01-21-2016, 01:38 AM (This post was last modified: 01-21-2016 01:40 AM by sbergman27.)
Post: #11
RE: TERMINAL view still does not work
(01-19-2016 04:17 PM)Tim Wessman Wrote:  Yes, the OS has no problems with your comment re the apple2.

OK. I'm largely satisfied. I can run a program that writes to the terminal and scroll through the results. And the output to the terminal mostly occurs in real-time. I do have one question. Why the 10 second delay in terminal output at 43 in this demo program? That delay threw me a bit. I assumed that it didn't scroll until the program terminated when I first ran it, with a smaller upper limit to the FOR/NEXT loop.

Code:

EXPORT PR()
BEGIN
  PRINT();
  LOCAL p:=1;
  FOR X FROM  1 TO 1000000 DO
    p:=nextprime(p);
    PRINT(P);
  END;
END;

Were you able to replicate my problem with Bad Argument Type? I consider that one to be a bug fix which really should make it into the next firmware release.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: TERMINAL view still does not work - sbergman27 - 01-21-2016 01:38 AM



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