Modules
Repeat
Shared

Shared

A ready to use while loop that never break instead of generating multiple loops every time which could lead to the overheat

lib.repeat(func)

lib.repeat(func)

Parameters

  • func function: The function to repeat

Returns

  • void

Examples

lib.repeat(function()
  print("This will never break")
end)