loadout/bin/go-playground
2021-10-03 17:22:56 -06:00

6 lines
180 B
Bash
Executable File

#!/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;
$EDITOR main.go;