Contact: aviboots(AT)netvision.net.il
41,786 questions
54,471 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} */