diff --git a/examples/ch1/hello/main.go b/examples/ch1/hello/main.go new file mode 100644 index 0000000..078ddff --- /dev/null +++ b/examples/ch1/hello/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, 世界") +}