Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 369 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 369 Bytes
package main

type Me struct{
  Code string
  Job string
  BestAndFavoriteSkill string
  Twitter string
  ENS string
}

func main() {
  me := &Me{
    Job: "Web2 & Web3 Security",
    Code: "Python,Go and Everythings",
    BestAndFavoriteSkill: "Web,Smart contract hacking",
    Twitter: "https://twitter.com/ArbazKiraak",
    ENS: "arbaz.eth"
  }
  _ = me
}