--!native
--!nonstrict
--!optimize 2
-- Compiled with roblox-ts v2.3.0
local function gcd(a, b)
	while b > 0 do
		a, b = b, a % b
	end
	return a
end
return {
	gcd = gcd,
}
