mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
langref: added missing newlines to destructuring tuples example
langref: added missing newlines to destructuring tuples example
This commit is contained in:
parent
f63cd9194c
commit
0b75a2a1b1
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue