Write bool in MessagePack format

Property definitions

msgpack :: write $ Writer :: write_msgpack_bool
	# Write `bool` in MessagePack format
	fun write_msgpack_bool(bool: Bool)
	do write_byte(if bool then 0xC3 else 0xC2)
lib/msgpack/write.nit:25,2--27,43