// twizycat
 
package main
 
import (
"fmt"
"trakt.tv/users/twizycat"
"last.fm/user/twizycat"
)
 
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() {
fmt.Println("Loading...")
}
 
func currentlyListening() {
fmt.Println("Loading...")
}
 
// made with ❤️