This commit is contained in:
Adam Millerchip 2021-12-26 23:37:19 +09:00
parent 6d0b33d718
commit c58d9249fa
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ pub fn main() void {
// Please make num2 equal 5 using num1_pointer!
// (See the "cheatsheet" above for ideas.)
num2 = ???;
num2 = num1_pointer.*;
std.debug.print("num1: {}, num2: {}\n", .{ num1, num2 });
}