There are 10 types of people in the world. Those who get Binary and those who don't..
WhoAmI :=struct{
experience *uint8
currentWork string
company string
hobbies []string
}{
experience: 5,
currentWork: "Senior Software Developer",
company: "StockX",
hobbies: []string{"Reading", "Coding", "Being up all Night chasing that ONE BUG..."},
}
func (me *WhoAmI) GetCity() string{
return "Bengaluru,India"
}
func (me *WhoAmI) Ambitions() []string{
go Consistent()
go ExploreWorld()
go HealthyAndFit()
return []string{"Become better than yesterday", "Best in golang", "Inspiration to others"}
}