Background(255);
Line(10, 0, 10, Height);
Line(Width, 10, 0, 10); 
        
          
        
Background(255);
for(int i = 0; i < Height; i = i + 10) 
	Line(0, i, Width, i); 
for(int i = 0; i < Width; i = i + 10) 
	Line(i, 0, i, Height);
        
Timer = Draw;
void Draw() 
{
	Background(255);
	
	for(int i = 0; i < Height; i = i + 10) 
		Line(0, i, Width, i); 
	for(int i = 0; i < Width; i = i + 10) 
		Line(i, 0, i, Height);
}