From 1957081c122fe231eb6120192489dd979d214317 Mon Sep 17 00:00:00 2001 From: mediocregopher Date: Sun, 13 Aug 2023 21:34:14 +0200 Subject: Update branch with all changes which could be brought in from private branches For a while I was keeping a private branch where there were a lot of non-public things included, and that became the de-facto branch while this one lagged. This one is now up-to-date, all private stuff is dealt with via config files which are not committed. --- bin/go-playground | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/go-playground') diff --git a/bin/go-playground b/bin/go-playground index 37675d0..64633a9 100755 --- a/bin/go-playground +++ b/bin/go-playground @@ -1,5 +1,5 @@ #!/bin/sh cd "$(mktemp -d)"; go mod init local-playground; -echo -e 'package main\n\nimport (\n\t"fmt"\n)\n\nfunc main() {\n\tfmt.Println("aloha")\n}\n' > main.go; +echo 'package main\n\nimport (\n\t"fmt"\n)\n\nfunc main() {\n\tfmt.Println("aloha")\n}\n' > main.go; $EDITOR main.go; -- cgit v1.2.3