Is self odd ?

assert not 13.is_even

Property definitions

core :: math $ Int :: is_odd
	# Is `self` odd ?
	#
	#     assert not 13.is_even
	fun is_odd: Bool do return not is_even
lib/core/math.nit:122,2--125,39