summaryrefslogtreecommitdiff
path: root/bin/go-playground
diff options
context:
space:
mode:
Diffstat (limited to 'bin/go-playground')
-rwxr-xr-xbin/go-playground2
1 files changed, 1 insertions, 1 deletions
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;