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