This commit is contained in:
Adam Millerchip 2021-12-26 23:53:37 +09:00
parent 84f81a61bd
commit 7605499b90
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ pub fn main() void {
// Please define pointer "p" so that it can point to EITHER foo or
// bar AND change the value it points to!
??? p: ??? = undefined;
var p: *u8 = undefined;
p = &foo;
p.* += 1;