import std ffi.malloc
export func main() {
while true {
let pointer = malloc(8192)
println(pointer)
free(pointer)
}