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