| author | |
| committer | |
| log | 340cf85faadbac0c51e072f588b70bd77f7c6c7b |
| tree | 9320288b8afea50b8edf2d7fa1705964463fdb7c |
| parent | 8ac3ad48c8eeccf400ab8b2014c958fc0256f5b7 |
1 files changed, 1 insertions(+), 1 deletions(-)
doc/langref/destructuring_mixed.zig+1-1| ... | @@ -15,7 +15,7 @@ pub fn main() void { | ... | @@ -15,7 +15,7 @@ pub fn main() void { |
| 15 | // You can use _ to throw away unwanted values. | 15 | // You can use _ to throw away unwanted values. |
| 16 | _, x, _ = tuple; | 16 | _, x, _ = tuple; |
| 17 | 17 | ||
| 18 | print("x = {}", .{x}); | 18 | print("x = {}\n", .{x}); |
| 19 | } | 19 | } |
| 20 | 20 | ||
| 21 | // exe=succeed | 21 | // exe=succeed |