diff --git a/concurrency/parallelism.md b/concurrency/parallelism.md new file mode 100644 index 0000000..c9aeab8 --- /dev/null +++ b/concurrency/parallelism.md @@ -0,0 +1,7 @@ +# Parallelism Pattern + +[Parallelism](https://blog.golang.org/pipelines#TOC_8.) allows multiple "jobs" or tasks to be run concurrently and asynchronously. + +# Implementation and Example + +An example showing implementation and usage can be found in [parallelism.go](parallelism.go). \ No newline at end of file