mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-28 19:19:49 -04:00
11 lines
338 B
Plaintext
11 lines
338 B
Plaintext
TOML conversions expect any ucg value.
|
|
|
|
They are transformed into toml using the following rules:
|
|
|
|
- tuples become maps `{...}`
|
|
- lists become lists `[...]`
|
|
- Int becomes an Int
|
|
- Float becomes a Float
|
|
- Strings become Strings.
|
|
- NULL is not allowed in toml documents and will generate a compile error
|
|
- Functions and Modules are ignored. |