Skip to content

Instantly share code, notes, and snippets.

View caiolouro's full-sized avatar

Caio Louro caiolouro

View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@caiolouro
caiolouro / tour_of_go_web_crawler.go
Created March 13, 2022 23:24
Tour Of Go Web Crawler Exercise Solution
// https://go.dev/tour/concurrency/10
package main
import (
"fmt"
"sync"
)
type UrlSeen struct {