1957081c12
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.
6 lines
177 B
Bash
Executable File
6 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
cd "$(mktemp -d)";
|
|
go mod init local-playground;
|
|
echo 'package main\n\nimport (\n\t"fmt"\n)\n\nfunc main() {\n\tfmt.Println("aloha")\n}\n' > main.go;
|
|
$EDITOR main.go;
|