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, 10 insertions, 0 deletions
diff --git a/meta/recipes-extended/go-examples/files/helloworld.go b/meta/recipes-extended/go-examples/files/helloworld.go
new file mode 100644
index 0000000000..0253c40411
--- /dev/null
+++ b/meta/recipes-extended/go-examples/files/helloworld.go
@@ -0,0 +1,10 @@
+// You can edit this code!
+// Click here and start typing.
+// taken from https://golang.org/
+package main
+
+import "fmt"
+
+func main() {
+ fmt.Println("Hello, 世界")
+}