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