選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

marshal_test.toml 593B

1234567891011121314151617181920212223242526272829303132333435363738
  1. title = "TOML Marshal Testing"
  2. [basic]
  3. bool = true
  4. date = 1979-05-27T07:32:00Z
  5. float = 123.4
  6. int = 5000
  7. string = "Bite me"
  8. uint = 5001
  9. [basic_lists]
  10. bools = [true,false,true]
  11. dates = [1979-05-27T07:32:00Z,1980-05-27T07:32:00Z]
  12. floats = [12.3,45.6,78.9]
  13. ints = [8001,8001,8002]
  14. strings = ["One","Two","Three"]
  15. uints = [5002,5003]
  16. [basic_map]
  17. one = "one"
  18. two = "two"
  19. [subdoc]
  20. [subdoc.first]
  21. name = "First"
  22. [subdoc.second]
  23. name = "Second"
  24. [[subdoclist]]
  25. name = "List.First"
  26. [[subdoclist]]
  27. name = "List.Second"
  28. [[subdocptrs]]
  29. name = "Second"