This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Encoding a map to a gob. Save the gob to disk. Read the gob from disk. Decode the gob into another map. | |
package main | |
import ( | |
"fmt" | |
"gob" | |
"bytes" | |
"io/ioutil" | |
) | |
func main() { |