Backend developer, loves problematic life
package main
import "fmt"
type Developer struct {
Name string
Title string
Location string
Stack []string
}
func main() {
me := &Developer{
Name: "Harsha",
Title: "Backend Developer",
Location: "Bangalore",
Stack: []string{
"Spring boot", "Go", "Java", "SQL", "NoSQL",
"Microservices",
},
}
fmt.Println("Welcome to my GitHub!")
_ = me
}


