package
0.0.0-20241204153840-f3f09f0b60cb
Repository: https://github.com/kylekinsella/concurrent-development-4th-year.git
Documentation: pkg.go.dev

# README

Producer - Consumer Lab, Made by Kyle Kinsella | C00273146

What is the producer - consumer problem?

The producer - consumer problem is where we have a producer put an item into a buffer and consumers take items out of the buffer.

Below is an example on what the producer - consumer problem looks like:

buffer = []
producer puts 0 into the buffer
buffer is changed to [0]
consumer takes the 0 out of the buffer
buffer is now empty []

How to run my code

To run my code you must do the following:

1. Download my go file

2. Type in: Go run filename, change filename to be the name of the file

Licensing

All of this work I have completed is licensed with my below license.

This work by Kyle Kinsella is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International