You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ziglings/patches/patches/051_values.patch

28 lines
819 B
Diff

--- exercises/051_values.zig 2024-03-14 23:25:42.695020607 +0100
+++ answers/051_values.zig 2024-03-14 23:28:34.525109174 +0100
@@ -87,7 +87,7 @@
// Let's assign the std.debug.print function to a const named
// "print" so that we can use this new name later!
- const print = ???;
+ const print = std.debug.print;
// Now let's look at assigning and pointing to values in Zig.
//
@@ -163,13 +163,13 @@
print("XP before:{}, ", .{glorp.experience});
// Fix 1 of 2 goes here:
- levelUp(glorp, reward_xp);
+ levelUp(&glorp, reward_xp);
print("after:{}.\n", .{glorp.experience});
}
// Fix 2 of 2 goes here:
-fn levelUp(character_access: Character, xp: u32) void {
+fn levelUp(character_access: *Character, xp: u32) void {
character_access.experience += xp;
}