import("std")

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