79203412

Date: 2024-11-19 12:29:37
Score: 0.5
Natty:
Report link

Trivial loop function:

function loop()
    -- your code here
    while true do
        -- your loop code there
    end
end

More not trivial loop:

function loop ()
    -- your loop code there
    return loop()
end
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: darkfrei