Property definitions

hash_debug :: hash_debug $ Sys :: div
	private fun div(n,d: Int): String
	do
		if d == 0 then return "NA"
		return (n.to_f / d.to_f).to_precision(2)
	end
lib/hash_debug/hash_debug.nit:65,2--69,4