extern printf = (*i64, varargs) => void; extern malloc = (i64) => *i64; extern free = (*i64) => void; let main = () => i64 { let x = malloc(128); /* *(x+0) = 10; *(x+8) = 20; */ printf("%p\n", x); printf("%d\n", *x); printf("%d\n", *(x+1)); free(x); return 0; };