zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 39aca6f37e83e263236339f9e67bace2a098cd16 (tree)
parent 2201f74d7fbb9f532fa3b7e075c21ce531698648
Author: Manlio Perillo <manlio.perillo@gmail.com>
Date:   Fri, 15 Aug 2025 14:33:55 +0200

zon: Add anonymous struct literal in the example

Diffstat:
Mlib/std/zon.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/lib/std/zon.zig b/lib/std/zon.zig @@ -23,6 +23,7 @@ //! .b = "hello, world!", //! .c = .{ true, false }, //! .d = .{ 1, 2, 3 }, +//! .e = .{ .x = 13, .y = 67 }, //! } //! ``` //!