import("std")

let main() = {
  var p = cast(*i32, std:malloc(8))
  *p = 2
  *(p+4) = 4
  std:printf("%d\n", *(p+4))
}