7 lines
99 B
Plaintext
7 lines
99 B
Plaintext
|
import mem
|
||
|
|
||
|
main() {
|
||
|
address := mem.alloc(1024)
|
||
|
err := mem.free(address, 1024)
|
||
|
assert err == 0
|
||
|
}
|