File: unmarshal-arraytable-nested-1.toml

package info (click to toggle)
golang-github-naoina-toml 0.1.1-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 416 kB
  • sloc: makefile: 7
file content (24 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# unmarshal-arraytable-nested-1.toml

[[fruit]]
name = "apple"

  [fruit.physical]
  color = "red"
  shape = "round"

  [[fruit.variety]]
  name = "red delicious"

  [[fruit.variety]]
  name = "granny smith"

[[fruit]]
name = "banana"

  [fruit.physical]
  color = "yellow"
  shape = "lune"

  [[fruit.variety]]
  name = "plantain"