開発環境
- OS X El Capitan - Apple (OS)
- Emacs (Text Editor)
- Go (version go1.5.2 darwin/amd64) (プログラミング言語)
Introducing Go (Caleb Doxsey (著)、O'Reilly Media)のChapter 1.(Getting Started)、Exercises 1-5.(No. 211)を取り組んでみる。
Exercises 1-5.(No. 211)
コード(Emacs)
package main
import "fmt" // comment
// 4.
import "os"
// 1.whitespace
// whitespace end
/*
comment1
comment2
*/
func main() {
// 3. the fmt package begin with "package fmt"
// 5. my name: golang
fmt.Println("Hello, golang world!")
// 4.
os.Exit(1)
}
入出力結果(Terminal)
$ go run main.go Hello, golang world! exit status 1 $
0 コメント:
コメントを投稿