mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 05:10:55 +00:00
14 lines
208 B
Plaintext
14 lines
208 B
Plaintext
func malloc(size)
|
|
native ffi "c:malloc:void*"
|
|
|
|
func free(pointer)
|
|
native ffi "c:free:void"
|
|
|
|
export func main() {
|
|
while true {
|
|
let pointer = malloc(8192)
|
|
println(pointer)
|
|
free(pointer)
|
|
}
|
|
}
|