Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
package main import "fmt" type Worker struct { id, age int name string } func main() { w := Worker{1345, 49, "Bob"} fmt.Println(w) } /* run: {1345 49 Bob} */