//Example code to plot a parabola
var i;
for (i = -20; i <= 20; i++) {
	plot_xy(i,i*i);
	sleep(0.01);
}