package main
import (
"fmt"
)
type Nerd struct {
Name string
Interests string
}
func main() {
me := Nerd{
Name: "twizycat",
Interests: "Go, gaming, cats, movies and music",
}
fmt.Println(me)
}
func currentlyWatching() {
}
func currentlyListening() {
}