
#include "grafi.h"

main()
{double x,y,x1=-1,x2=1,y1=-1,y2=1;
 InitGraficos();
 Ejes(x1,x2,y1,y2);
 for(x=-1;x<=1;x+=.005)
	{y=x;
	 Punto(x,y);
	}
 getch();
 FinGraficos();
}
