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:
parent
2af05f698c
commit
2d3428c809
6 changed files with 194 additions and 0 deletions
9
go/shell.nix
Normal file
9
go/shell.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ pkgs ? import <nixpkgs> {}, ... }:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = [
|
||||
pkgs.go
|
||||
pkgs.goimports
|
||||
pkgs.godef
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue