summaryrefslogtreecommitdiffstats
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 @@
1// You can edit this code!
2// Click here and start typing.
3// taken from https://golang.org/
4package main
5
6import "fmt"
7
8func main() {
9 fmt.Println("Hello, 世界")
10}