Practice concurrency in golang

Uploading some snippets I created to help me better understand concurrency in
general and specifically concurrency in golang.
This commit is contained in:
William Carroll 2020-02-09 01:02:19 +00:00
parent 2af05f698c
commit 2d3428c809
6 changed files with 194 additions and 0 deletions

9
go/shell.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {}, ... }:
pkgs.mkShell {
buildInputs = [
pkgs.go
pkgs.goimports
pkgs.godef
];
}