summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/go-examples/files/helloworld.go
blob: 0253c40411d067c4489329264013b8c4ef18afc1 (plain)
1
2
3
4
5
6
7
8
9
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, 世界")
}