H4cker & Penetration Tester
I Love hacking for a more secure world. <3
package main
type Me struct{
Pronouns string
Code string
Job string
BestAndFavoriteSkill string
}
func main(){
me := &Me{
Job: " Red team that aims for a purple team.",
Pronouns: "He/Him",
Code: "Solidity, Go and Python and Everything",
BestAndFavoriteSkill: "Smart contract Security, Web Hacking :D"
}
_ = me
}