1
0
Fork 0
forked from Simnation/Main
This commit is contained in:
Nordi98 2025-08-11 19:11:07 +02:00
parent f670d97c4e
commit f2de0674c7
15 changed files with 1765 additions and 626 deletions

View file

@ -0,0 +1,7 @@
function removebyKey(tab, val)
for i, v in ipairs (tab) do
if (v == val) then
tab[i] = nil
end
end
end