#why is this the same

1 messages · Page 1 of 1 (latest)

agile abyss
#

i have a struct

  token: Token,
};

fn testing(p: *Parser) void {
  print("p.token.literal\n", .{p.token.literal});
  print("p.*.token.literal\n", .{p.*.token.literal});
}```
#

how does it print the same thing?