RosettaCodeData/Task/Arena-storage-pool/Zkl/arena-storage-pool.zkl
2023-07-01 13:44:08 -04:00

3 lines
173 B
Text

var pool=List(); // pool could be any mutable container
pool.append(Data(0,1234)); // allocate mem blob and add to pool
pool=Void; // free the pool and everything in it.