aboutsummaryrefslogtreecommitdiff
path: root/tests/core/go_binary/hello.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core/go_binary/hello.go')
-rw-r--r--tests/core/go_binary/hello.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/core/go_binary/hello.go b/tests/core/go_binary/hello.go
new file mode 100644
index 00000000..f7b60bde
--- /dev/null
+++ b/tests/core/go_binary/hello.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+ fmt.Println("Hello, world!")
+}