Merge pull request #6 from tony-stark-17/master

Intervals Readme update
This commit is contained in:
Linden
2022-01-09 07:03:51 +11:00
committed by GitHub

View File

@@ -72,6 +72,15 @@ CreateThread(function()
print(a, b) -- 'hello there', 'general kenobi' print(a, b) -- 'hello there', 'general kenobi'
end) end)
``` ```
### Intervals
```lua
local ontick = SetInterval(function(...)
print(...)
end, 0, 'arg1', 'arg2')
ClearInterval(ontick)
```
<br><h2>License</h2> <br><h2>License</h2>