Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

14 рядки
470 B

  1. /*
  2. Package toml implements decoding and encoding of TOML files.
  3. This package supports TOML v1.0.0, as listed on https://toml.io
  4. There is also support for delaying decoding with the Primitive type, and
  5. querying the set of keys in a TOML document with the MetaData type.
  6. The github.com/BurntSushi/toml/cmd/tomlv package implements a TOML validator,
  7. and can be used to verify if TOML document is valid. It can also be used to
  8. print the type of each key.
  9. */
  10. package toml