package main
type Developer struct {
Name string
Communities []string
Experiences []string
Hobbies []string
Cats []struct {
Name string
Role string
}
}
func NewDeveloper() *Developer {
return &Developer {
Name: "Misato Kawano 👵",
Communities: []string {
"SingularitySociety 🚀",
"WomenWhoGo Tokyo 🦫",
"42 Tokyo 🎮",
"Raycast Community Japan 🦝",
},
Experiences: []string {
"System Development 💻",
"Infrastructure Management 🛠️",
"BI & Data Operations 📊",
"Security Product Support 🔐",
"Support Center Leadership 🎯",
},
Hobbies: []string {
"Mountain Climbing 🏔️",
"City Walking 🚶♀️",
"Knitting 🧶",
"Piano 🎹",
"Tennis 🎾",
},
Cats: []struct {
Name string
Role string
}{
{ Name: "Nyan1-Go", Role: "Senior Bug Hunter 🐱" },
{ Name: "Nyan2-Go", Role: "Chief Nap Officer 🐱" },
},
}
}
♨️
Hello World!
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.






