import("std") struct Point = { x: i32 y: i32 } let main() = { var p = std:malloc(8) as *Point p.x = 10 p.y = 20 std:printf("%d\n", p.x) }