We read every piece of feedback, and take your input very seriously.
< Bear math
function drawLine(x1, x2) { for (let x = x1; x <= x2; x++) { drawPoint(x, 0); } }