1 2 3 4 5 6 7 8 9 10 11 12 13 14
package main import ( "encoding/gob" "os" ) type EmptyStruct struct { } func main() { var enc = gob.NewEncoder(os.Stdout) enc.Encode(EmptyStruct{}) }