The Way to Go Quotes

Rate this book
Clear rating
The Way to Go: A Thorough Introduction to the Go Programming Language The Way to Go: A Thorough Introduction to the Go Programming Language by Ivo Balbaert
159 ratings, 3.63 average rating, 18 reviews
The Way to Go Quotes Showing 1-2 of 2
“this point the value in f would be a map whose keys are strings and whose values are themselves stored as empty interface values: map[string]interface{}{        “Name”: “Wednesday”,        “Age”: 6,        “Parents”: []interface{}{            “Gomez”,            “Morticia”,        }, } To access this data we can use a type assertion to access f’s underlying map[string]interface{}: m := f.(map[string]interface{}) We can then iterate through the map”
Ivo Balbaert, The Way to Go: A Thorough Introduction to the Go Programming Language
“Do not communicate by sharing memory. Instead, share memory by communicating. Communication forces coordination.”
Ivo Balbaert, The Way to Go: A Thorough Introduction to the Go Programming Language