mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 21:21:33 +00:00
8 lines
110 B
Plaintext
8 lines
110 B
Plaintext
import std ffi.malloc
|
|
|
|
export func main() {
|
|
let pointer = malloc(8192)
|
|
println(pointer)
|
|
free(pointer)
|
|
}
|