The sky is dark, the wind is chasing!
CTFer and Whitehat
package main
type Me struct{
Pronouns string
Code string
Job string
BestAndFavoriteSkill string
}
func main() {
me := &Me{
Job: "White Hat Hacker",
Prononus: "He/Him",
Code: "PHP and Python and Everythings",
BestAndFavoriteSkill: "Web Hacking :D"
}
_ = me
}