Backend Developer | Software Engineering Student at KPI
package main
import "fmt"
type Developer struct {
Name string
Role string
Hobbies []string
FunFact string
}
func main() {
alex := Developer{
Name: "Alex",
Role: "Backend Developer",
Hobbies: []string{"Long-distance walking", "Story-driven RPGs", "Any music that sounds good"},
FunFact: "I spent 20 minutes trying to write this exact line",
}
fmt.Printf("%+v\n", alex)
}




