From 2d3428c8096c27c0c499f0c89ef92b8c306b644e Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 9 Feb 2020 01:02:19 +0000 Subject: Practice concurrency in golang Uploading some snippets I created to help me better understand concurrency in general and specifically concurrency in golang. --- go/shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 go/shell.nix (limited to 'go/shell.nix') diff --git a/go/shell.nix b/go/shell.nix new file mode 100644 index 000000000000..836718d85f29 --- /dev/null +++ b/go/shell.nix @@ -0,0 +1,9 @@ +{ pkgs ? import {}, ... }: + +pkgs.mkShell { + buildInputs = [ + pkgs.go + pkgs.goimports + pkgs.godef + ]; +} -- cgit 1.4.1