golang
これだけだと1つのgoroutineの中で再帰しているだけで、ちゃんと並列になっていない気がする… package main import "fmt" type Fetcher interface { // Fetch returns the body of URL and // a slice of URLs found on that page. Fetch(url string) (body …
これだけだと1つのgoroutineの中で再帰しているだけで、ちゃんと並列になっていない気がする… package main import "fmt" type Fetcher interface { // Fetch returns the body of URL and // a slice of URLs found on that page. Fetch(url string) (body …