publish ch1/...

This commit is contained in:
Alan Donovan
2015-10-16 09:12:59 -04:00
parent a99e98f589
commit 1d9c5ef8e2
13 changed files with 472 additions and 0 deletions
+9
View File
@@ -1,3 +1,10 @@
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
// See page 1.
// Helloworld is our first Go program.
//!+
package main
import "fmt"
@@ -5,3 +12,5 @@ import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
//!-