1 if true and 0 if false

Property definitions

core $ Bool :: to_i
	# 1 if true and 0 if false
	fun to_i: Int
	do
		if self then
			return 1
		else
			return 0
		end
	end
lib/core/kernel.nit:506,2--514,4