package blocking

func blocking() {
	go InefficientProducer()
	EfficientConsumer()
	go EfficientProducer()
	InefficientConsumer()
}
