Stroke a point, uses the stroke color set in stroke().
YourScreen.point(x, y)
x: x position of the point y: y position of the point
Nothing
YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(0, 255, 0);
YourScreen.point(1, 1);
YourScreen.endDraw();