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 Alex Rønne Petersen
parent f06c3d8be7
commit 38185ee10f
No known key found for this signature in database

View File

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