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