DRYな備忘録

Don't Repeat Yourself.

2015-07-23から1日間の記事一覧

【Go言語】無名structの初期化

go

しれっと可能だったのでメモ The Go Playground package main import ( "encoding/json" "fmt" ) func main() { // 無名structの初期化 dest := &struct { Name string `json:"name"` Age int `json:"age"` Langs []string `json:"langs"` }{} json.Unmarsha…