Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function Compare(ArrayA, ArrayB)
- local False = false;
- for i, v in pairs(ArrayA) do
- if (ArrayA[i] ~= ArrayB[i]) then
- False = true;
- end
- end
- if (False) then
- return false;
- end
- return true;
- end
Add Comment
Please, Sign In to add comment