H4cker & Developer
Passionate about safeguarding WEB3 & Blockchain! ❤️🔐
package main
type Me struct{
Pronouns string
Code string
Job string
BestAndFavoriteSkill string
}
func main(){
me := &Me{
Job: " SmartContracts Security Research & Audit",
Pronouns: "He/Him",
Code: "Solidity, Go and Python and Everythings",
BestAndFavoriteSkill: "Smart contract Security, WEB3 & Blockchain :D"
}
_ = me
}