Iβm currently learning Microservices, Hono, Cloud Networking & DevOps.
type Profile struct {
Name string
Handle string
Location string
Languages []string
Projects int
Stars int
Followers int
}
func main() {
// Constructing the Profile object
pegasus := Profile{
Name: "Tanishq Agarwal",
Handle: "@047pegasus",
Location: "India",
Languages: []string{"Golang", "Python", "C++", "C", "Javascript", "bash"},
Projects: 3,
Stars: 11,
Followers: 9,
}
}
β
Credit: 047pegasus Last Edited on: 16/10/2023