Returns the square root of self

assert 16.sqrt == 4

Property definitions

core :: math $ Int :: sqrt
	# Returns the square root of `self`
	#
	#     assert 16.sqrt == 4
	fun sqrt: Int `{ return sqrt(self); `}
lib/core/math.nit:87,2--90,39