Files
zig-fetch-py/examples/simple.zon
crosstyan fd29f7e3af Enhance ZON parser to support tuples and update documentation
- Modify parser to handle ZON tuples (`.{ 1, 2, 3 }`) as arrays
- Update README with more detailed explanation of ZON tuple syntax
- Add multiple example ZON files demonstrating tuple usage
- Implement tuple parsing in `parser.py`
- Add test case for tuple parsing
2025-03-07 17:01:12 +08:00

7 lines
124 B
Plaintext

.{
.name = "example",
.version = "1.0.0",
.numbers = .{ 1, 2, 3 },
.strings = .{ "one", "two", "three" },
}