Let's go and do some Go
package main
import "fmt"
type Developer struct {
Name string
Location string
Focus []string
Passion string
}
func main() {
shanto := Developer{
Name: "Subrata Chanda Shanto",
Location: "Sylhet, Bangladesh",
Focus: []string{"Backend Development", "Golang", "Microservices"},
Passion: "Building scalable systems that make a difference",
}
fmt.Printf("%s ready to code!\n", shanto.Name)
}