2014-01-01から1ヶ月間の記事一覧

Go のMAPエクササイズ

package main import ( "code.google.com/p/go-tour/wc" "strings" "fmt" ) func WordCount(s string) map[string]int { words := strings.Fields(s) fmt.Println(words) result := make(map[string]int) for i:=0; i

Go Tour 36ページのエクササイズ

package main import "code.google.com/p/go-tour/pic" func Pic(dx, dy int) uint8 { z := make(uint8, dx) for x:=0; x

今日からGo言語を始めるよ

今年はGo言語を勉強して、現在Pythonで書いてるWebアプリをGoに書き換えます。 書き換え完了を2004年の1月中を目標にします。