type Dev struct {
Name string
Age int
Location string
YearsOfExperience int
}
func main() {
me := Dev {
"Gustavo Bruno", 21, "Brazil", 1,
}
fmt.Println(me)
}
Currently working as a C# Developer and studying Computer Science. Learning Go.