[[Go]]の関数で戻り値に名前をつけること。 ```go // totalはNamed return value func sum(x int, y int) (total int) { total = x + y return } ```