File: key_example.toml

package info (click to toggle)
toml11 4.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,464 kB
  • sloc: cpp: 38,446; makefile: 8; sh: 5
file content (26 lines) | stat: -rw-r--r-- 506 bytes parent folder | download
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
# This is a TOML document.
# This contains most of the examples in the spec (from https://toml.io).

[keys]

key = "value"
bare_key = "value"
bare-key = "value"
1234 = "value"

"127.0.0.1"          = "value"
"character encoding" = "value"
"ʎǝʞ"                = "value"
'key2'               = "value"
'quoted "value"'     = "value"

"" = "blank"

fruits.apple.skin = "thin"
fruits.apple.color = "red"

fruits.orange.skin = "thick"
fruits.orange.color = "orange"

site."google.com" = true
3.14159 = "pi"