package main import "linkchecker/linkchecker" func main() { lc := linkchecker.New("https://bitfieldconsulting.com/golang/how") //lc := linkchecker.New("https://example.com") //lc := linkchecker.New("https://www.aksjhdfjkhashjkd.com/") //lc := linkchecker.New("https://lamehackersguide.blogspot.com/2017/02/weaponizing-postscript.html") lc.Scan(3) lc.Print() }