This commit is contained in:
Adam Millerchip 2021-12-26 13:02:24 +09:00
parent fdd27b8c43
commit c01a756b02
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ const std = @import("std");
pub fn main() void {
// Without changing anything else, please add a 'defer' statement
// to this code so that our program prints "One Two\n":
std.debug.print("Two\n", .{});
defer std.debug.print("Two\n", .{});
std.debug.print("One ", .{});
}