langref: added missing newlines to destructuring tuples example

langref: added missing newlines to destructuring tuples example
This commit is contained in:
LukaTD 2025-09-10 04:31:20 +02:00 committed by GitHub
parent f63cd9194c
commit 0b75a2a1b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,8 +15,8 @@ pub fn main() void {
break :blk .{ min, max }; break :blk .{ min, max };
}; };
print("min = {}", .{ min }); print("min = {}\n", .{ min });
print("max = {}", .{ max }); print("max = {}\n", .{ max });
} }
// exe=succeed // exe=succeed