aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/go-examples/files/helloworld.go
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/go-examples/files/helloworld.go')
-rw-r--r--meta/recipes-extended/go-examples/files/helloworld.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/meta/recipes-extended/go-examples/files/helloworld.go b/meta/recipes-extended/go-examples/files/helloworld.go
deleted file mode 100644
index 0253c40411..0000000000
--- a/meta/recipes-extended/go-examples/files/helloworld.go
+++ /dev/null
@@ -1,10 +0,0 @@
-// You can edit this code!
-// Click here and start typing.
-// taken from https://golang.org/
-package main
-
-import "fmt"
-
-func main() {
- fmt.Println("Hello, 世界")
-}