मोड्युल:Leading zeros

विकिपिडिया, एक स्वतन्त्र विश्वकोशबाट
p = {}
p.stripzeros = function(frame)
	x = tonumber(frame.args[1])
	if x then
		return x
	else
		return "Incorrect"
	end
end
return p