Programming environment for editing various of my live apps without restarting them.
approximate = function(n, zeros)
	-- turn n into a number with n zeros
	for i=1,zeros do
		n = n/10
	end
	n= math.floor(n)
	local magnitude = 1
	for i=1,zeros do
		n = n*10
		magnitude = magnitude*10
	end
	return n, magnitude
end