2019年6月2日日曜日

開発環境

Head First Go (Jay McGavren(著)、O'Reilly Media)のChapter 7(labeling data - Maps)、Exercise(214)の解答を求めてみる。

コード

package main

import "fmt"

func main() {
 jewelry := make(map[string]float64)
 jewelry["necklace"] = 89.99
 jewelry["earrings"] = 79.99
 clothing := map[string]float64{"pants": 59.99, "shirt": 39.99}
 fmt.Println("Earrings:", jewelry["earrings"])
 fmt.Println("Necklace:", jewelry["necklace"])
 fmt.Println("Shirt:", clothing["shirt"])
 fmt.Println("Pants:", clothing["pants"])
}

入出力結果(Bash、cmd.exe(コマンドプロンプト)、Terminal)

$ go run sample1.go
Earrings: 79.99
Necklace: 89.99
Shirt: 39.99
Pants: 59.99
$ 

0 コメント:

コメントを投稿