Peter
unread,Jun 13, 2011, 10:24:29 PM6/13/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mathpiper-user
Hello all.
I was experimenting GeoGebraPoint() function inside %mathpiper fold.
Actually I was following the second book, "Exploring STEM with
MathPiper" on page 141. Unfortunately I forgot to update the index
value to finite the While() function shown below:
%mathpiper
index := 1;
While(index <= 5)
[
x := RandomInteger(8);
y := RandomInteger(8);
GeoGebraPoint("A":ToString(index), x, y);
index++; /* THIS WAS MISSED */
];
%/mathpiper
Now, I seem to have an infinite loop never stopping. The Activity Log
blows up in the "activity.log" file.
It seems continuing even though I stopped and restarted the
"mathpiperIDE" in my Windows Vista.
How do I "kill" the job or task?
Peter