Syntax for pointer dereferencing ================================ Current syntax in SLUL: deref p = 123 int y = deref p Pascal-like syntax: p^ = 123 int y = p^ Zig-like syntax: p.* = 123 int y = p.*