Computes the sine of self (expressed in radians).

#assert pi.sin == 0.0

Property definitions

core :: math $ Float :: sin
	# Computes the sine of `self` (expressed in radians).
	#
	#     #assert pi.sin == 0.0
	fun sin: Float `{ return sin(self); `}
lib/core/math.nit:221,2--224,39