Shop OBEX P1 Docs P2 Docs Learn Events
SimpleIDE Terminal: Max number of lines ~256? — Parallax Forums

SimpleIDE Terminal: Max number of lines ~256?

From C, I'm running a loop from 0 to 300 that prints one line per loop. When I scroll back up in terminal there only only lines #45 to #300. Is there a limit to lines in the terminal or am I barking up the wrong tree?
- Thanks

#include "simpletools.h"
int main()
{
int counter; // counters need to be integers
for(counter=0;counter<=300;counter++)print("%d\n",counter);
}

Comments

Sign In or Register to comment.