mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-02 21:00:56 +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)
|
|
}
|