From c7f4fabcb0a7dfb7d0ede5d8995614266435522a Mon Sep 17 00:00:00 2001 From: chai2010 Date: Tue, 2 Jan 2018 06:53:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=20examples=20=E7=9B=AE?= =?UTF-8?q?=E5=BD=95,=20=E7=94=A8=E4=BA=8E=E5=AD=98=E6=94=BE=E4=BE=8B?= =?UTF-8?q?=E5=AD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/ch1-01/hello/hello.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 examples/ch1-01/hello/hello.go 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("你好, 世界!") +}