Write a shader that draws a grid. Each cell in the grid should be 50x50
pixels in size, with a margin of 10
pixels between cells.
The shader should avoid using branching or conditional statements in its code, and instead rely on the fract
and step
functions to determine the color of each pixel.