Line Number | Syntax Highlight | Download Raw
LinkedIn


iterations = 1
x = 100
y = 100
function love.draw(a, b)
    love.graphics.point(x, y)
end

while iterations < 10 do
love.draw(x,y)
x=x+1
y=y+1
iterations=iterations+1
end




Back to recent pastes