Interval Readme

This commit is contained in:
Tony Stark
2022-01-08 20:47:25 +05:30
committed by GitHub
parent 72575c90ee
commit b806ca3eee

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>
@@ -92,4 +101,4 @@ If not, see <https://www.gnu.org/licenses/gpl-3.0.html>
</td></tr> </td></tr>
<tr><td> <tr><td>
<font align='center'>https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)</font> <font align='center'>https://tldrlegal.com/license/gnu-general-public-license-v3-(gpl-3)</font>
</td></td></table> </td></td></table>