summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/go-examples/files/helloworld.go
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2017-09-08 18:04:44 -0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-11 17:30:30 +0100
commite249708e10bdb4713195de31329dbe05dc3d18d1 (patch)
tree8ac71c4fb2de01e5bac149f836dbca7ac68270a7 /meta/recipes-extended/go-examples/files/helloworld.go
parent6cf084963ab22952d16093e72e8936b60a828c25 (diff)
downloadpoky-e249708e10bdb4713195de31329dbe05dc3d18d1.tar.gz
go-helloworld: Use the Golang examples repository
This updates the recipe to use the Golang examples repository so it makes use of the unpack as well as standard tasks showing how easy it can be. (From OE-Core rev: 116d2ea1fe92725bb1265152f3db51598643a481) Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 @@
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}