14 lines
141 B
TOML
14 lines
141 B
TOML
strKey = "string value"
|
|
intKey = 1000
|
|
boolKey = true
|
|
floatKey = 1.2345
|
|
strArr = [
|
|
"arr1"
|
|
]
|
|
|
|
[objKey]
|
|
name = "name"
|
|
|
|
[[arrObj]]
|
|
key = "val"
|