for j=3,11,2 do
for i=1,j do
love.graphics.circle("line", startx+(i-1)*50-(j-3)*25, starty+25*((j-3)), circlerad, 50);
love.graphics.print('A',startx-5+(i-1)*50-(j-3)*25,starty-5+25*((j-3)));
love.graphics.print(resuslt,200,0);
end
end
those line in love.draw() method,1 minitute later ,CPUT&memory out of use
It works fine on my computer, I need more information about startx, starty, circlerad, and resuslt value.
How about uploading your .love file to provide more information?