-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsonfiles02.go
More file actions
45 lines (36 loc) · 786 Bytes
/
jsonfiles02.go
File metadata and controls
45 lines (36 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* RZFeeser | Alta3 Research
Writing out JSON */
package main
import (
"encoding/json"
"fmt"
"os"
)
func main() {
type Person struct {
Fn string
Ln string
}
type ColorGroup struct {
ID int
Name string
Colors []string
P Person `json:"Person"`
}
per := Person{Fn: "RZ",
Ln: "Feeser",
}
group := ColorGroup{
ID: 24601,
Name: "Greens",
Colors: []string{"Moss", "Shamrock", "Lime", "Hunter"},
P: per,
}
// serialize values from struct to json format
b, err := json.Marshal(group)
if err != nil {
fmt.Println("error:", err)
}
// print to standard out
os.Stdout.Write(b)
}