v0.3.0 - Nothing works. I'm confused as hell. I can't figure this out.

This commit is contained in:
TheWahlolly
2025-04-05 16:21:58 +03:00
parent 7b8e237abe
commit 198b56e64a
8 changed files with 208 additions and 21 deletions
+7
View File
@@ -0,0 +1,7 @@
function table.find(table, item)
for k, v in pairs(table) do
if v == item then
return(v)
end
end
end