package main import ( "fmt" ) func main() { items, err := FetchRss("https://rss.slashdot.org/Slashdot/slashdotMain") if err != nil { fmt.Println(err) } fmt.Println(items) }