felixangell / kpd

an old compiler for Krug written in D - a prototype version
MIT License
44 stars 1 forks source link

codegen for de-referencing pointers #54

Closed felixangell closed 6 years ago

felixangell commented 6 years ago

for example

let x = 44444;
let y = &x;
let z = @y;
printf(c"hello world im %d, %d\n", z, @y);