From 01e02fab360f1d0f6a653411197684d49cc84590 Mon Sep 17 00:00:00 2001 From: Denis Isaev Date: Sun, 7 Jul 2019 13:57:58 +0300 Subject: [PATCH] test --- tmpdir/main.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tmpdir/main.go diff --git a/tmpdir/main.go b/tmpdir/main.go new file mode 100644 index 00000000..8dbfc7ab --- /dev/null +++ b/tmpdir/main.go @@ -0,0 +1,8 @@ +package main + +import "fmt" + +func main() { + const print_str = "Hello, GopherCon" + fmt.Println(print_str) +}